More whitespace fixes.
This commit is contained in:
parent
83845db29a
commit
b42b3c60fc
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user