Fix truncation of comments, broke in f133c4d0b3.

This commit is contained in:
Wilson Snyder 2019-10-04 22:54:17 -04:00
parent 977a767477
commit 1cf29c4d20

View File

@ -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;