version 0.6

This commit is contained in:
gottox@rootkit.lan 2007-12-14 08:33:27 +01:00
parent 604eff6c9e
commit 7df5fd714d
2 changed files with 3 additions and 3 deletions

View file

@ -258,11 +258,11 @@ dolist(const char *begin, const char *end, int first) {
const char *p, *q; const char *p, *q;
char *buffer; char *buffer;
if(*begin != '\n' && !first) if(*begin != '\n' || begin[1] != '\n' && !first)
return 0; return 0;
p = begin; p = begin;
if(!first) if(!first)
p++; p += 2;
q = p; q = p;
if((*p == '-' || *p == '*' || *p == '+') && (p[1] == ' ' || p[1] == '\t')) { if((*p == '-' || *p == '*' || *p == '+') && (p[1] == ' ' || p[1] == '\t')) {
ul = 1; ul = 1;

View file

@ -1,5 +1,5 @@
# cmarkdown version # cmarkdown version
VERSION = 0.5.2 VERSION = 0.6
# paths # paths
PREFIX = /usr/local PREFIX = /usr/local