C++ comments are verboten. Per gripe from Kris Jurka.
authorTom Lane <tgl@sss.pgh.pa.us>
Thu, 9 Feb 2006 07:22:22 +0000 (07:22 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Thu, 9 Feb 2006 07:22:22 +0000 (07:22 +0000)
src/interfaces/ecpg/preproc/output.c

index 04379aebf37d617165007eea8f33ed1b72abd209..06531e976dbaf690d5e3eb4d51dc908538a2a460 100644 (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);