More whitespace fixes.

This commit is contained in:
ru 2002-05-18 15:15:30 +00:00
parent 83845db29a
commit b42b3c60fc

View File

@ -608,10 +608,12 @@ process_mdoc_line(char *line)
next = ++line;
for (;;) {
next = strchr(next, '"');
if (next == NULL || *next != '"')
if (next == NULL)
break;
strcpy(next, &next[1]);
line_end--;
if (*next != '"')
break;
next++;
}
} else