Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix harmless compiler warning. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
5aa37859d0bf2309ad6a2263bfee0b4e |
| User & Date: | mistachkin 2017-11-03 06:46:19.161 |
Context
|
2017-11-03
| ||
| 09:29 | Version 2.4 ... (check-in: a0001dcf57 user: drh tags: trunk, release, version-2.4) | |
| 06:46 | Fix harmless compiler warning. ... (check-in: 5aa37859d0 user: mistachkin tags: trunk) | |
| 06:30 | Fix segfault in status, et al, when a file in the checkout cannot be opened. ... (check-in: 3c6d23b752 user: mistachkin tags: trunk) | |
Changes
Changes to src/doc.c.
| ︙ | ︙ | |||
571 572 573 574 575 576 577 |
** specifies the title of the document in that case.
**
** For fossil-doc documents and for markdown documents, text of the
** form: "href='$ROOT/" or "action='$ROOT" has the $ROOT name expanded
** to the top-level of the repository.
*/
void doc_page(void){
| | | 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 |
** specifies the title of the document in that case.
**
** For fossil-doc documents and for markdown documents, text of the
** form: "href='$ROOT/" or "action='$ROOT" has the $ROOT name expanded
** to the top-level of the repository.
*/
void doc_page(void){
const char *zName = 0; /* Argument to the /doc page */
const char *zOrigName = "?"; /* Original document name */
const char *zMime; /* Document MIME type */
char *zCheckin = "tip"; /* The check-in holding the document */
char *zPathSuffix = ""; /* Text to append to g.zPath */
int vid = 0; /* Artifact of check-in */
int rid = 0; /* Artifact of file */
int i; /* Loop counter */
|
| ︙ | ︙ |