diff options
| author | gottox@rootkit.lan <gottox@rootkit.lan> | 2007-12-12 01:07:39 +0100 |
|---|---|---|
| committer | gottox@rootkit.lan <gottox@rootkit.lan> | 2007-12-12 01:07:39 +0100 |
| commit | 6a9b913b6c5d4d74e887b632471c5398aeb0ae76 (patch) | |
| tree | 4cb3e181efa2ff64094497f49d2d4ceac698dcdf /cmarkdown.c | |
| parent | 46e907346cd8ca0bc5e8499325ee433f100ca609 (diff) | |
even more stupid bug -.-
Diffstat (limited to 'cmarkdown.c')
| -rw-r--r-- | cmarkdown.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmarkdown.c b/cmarkdown.c index d708574..a101e97 100644 --- a/cmarkdown.c +++ b/cmarkdown.c @@ -257,7 +257,7 @@ dolist(const char *begin, const char *end) { buffer[i] = '\0'; while(buffer[--i] == '\n') buffer[i] = '\0'; fputs("<li>",stdout); - hprint(buffer,i+2+buffer); + process(buffer,i+2+buffer); fputs("</li>\n",stdout); } puts(ul ? "</ul>" : "</ol>"); |