newline stripping works again

This commit is contained in:
gottox@rootkit.lan 2007-12-13 13:44:42 +01:00
parent fea415180a
commit bce9fd9eba

View file

@ -468,8 +468,8 @@ process(const char *begin, const char *end) {
if(affected) if(affected)
p += affected; p += affected;
else { else {
for(q = p; *q == '\n' && q != end; q++); for(q = p; *q && *q == '\n' && q != end; q++);
if(q == end) if(q == end || !*q)
return; return;
else if(nohtml) else if(nohtml)
hprint(p,p+1); hprint(p,p+1);