Differences From:
File
src/wikiformat.c
part of check-in
[3a4c7f60a2]
- Accept wiki hyperlinks of the form: [#label]
Ticket ab82a0bd213b
by
drh on
2009-09-19 15:14:12.
[view]
To:
File
src/wikiformat.c
part of check-in
[e0131b1a66]
- Fix a (harmless) compiler warning in wikiformat.c.
by
drh on
2009-09-19 15:20:59.
[view]
@@ -962,9 +962,9 @@
}else{
zTerm = "";
}
}else if( is_valid_uuid(zTarget) ){
- int isClosed;
+ int isClosed = 0;
if( is_ticket(zTarget, &isClosed) ){
/* Special display processing for tickets. Display the hyperlink
** as crossed out if the ticket is closed.
*/