C++ comments are verboten. Per gripe from Kris Jurka.

This commit is contained in:
Tom Lane 2006-02-09 07:22:22 +00:00
parent 7ae2ccbc85
commit 14ebeee134

View file

@ -136,7 +136,6 @@ output_escaped_str(char *str)
if (str[i] == '"')
fputs("\\\"", yyout);
else if (str[i] == '\n')
//fputs("\\n\\\n", yyout);
fputs("\\\n", yyout);
else
fputc(str[i], yyout);