1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-17 17:02:08 +03:00

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