Fix truncation of comments, broke in f133c4d0b3.
This commit is contained in:
parent
977a767477
commit
1cf29c4d20
|
|
@ -693,6 +693,7 @@ void V3OutFormatter::puts(const char *strg) {
|
|||
// Output ignoring contents to EOL
|
||||
cp++;
|
||||
while (*cp && cp[1] && cp[1] != '\n') putcNoTracking(*cp++);
|
||||
if (*cp) putcNoTracking(*cp);
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
|
|
|||
Loading…
Reference in New Issue