Commit 14ebeee1 authored by Tom Lane's avatar Tom Lane

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

parent 7ae2ccbc
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment