mirror of
https://github.com/postgres/postgres.git
synced 2025-06-19 04:21:08 +03:00
C++ comments are verboten. Per gripe from Kris Jurka.
This commit is contained in:
@ -136,7 +136,6 @@ output_escaped_str(char *str)
|
|||||||
if (str[i] == '"')
|
if (str[i] == '"')
|
||||||
fputs("\\\"", yyout);
|
fputs("\\\"", yyout);
|
||||||
else if (str[i] == '\n')
|
else if (str[i] == '\n')
|
||||||
//fputs("\\n\\\n", yyout);
|
|
||||||
fputs("\\\n", yyout);
|
fputs("\\\n", yyout);
|
||||||
else
|
else
|
||||||
fputc(str[i], yyout);
|
fputc(str[i], yyout);
|
||||||
|
Reference in New Issue
Block a user