From: Peter Eisentraut Date: Sat, 18 Feb 2006 22:54:50 +0000 (+0000) Subject: ' is not valid HTML 4.01, so print the plain character instead. X-Git-Tag: REL8_2_BETA1~1391 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3228a92ccd37201355b3c5f3db5b1d40967eb818;p=postgresql ' is not valid HTML 4.01, so print the plain character instead. --- diff --git a/src/bin/psql/print.c b/src/bin/psql/print.c index 1b1ff260f8..98c61a5eda 100644 --- a/src/bin/psql/print.c +++ b/src/bin/psql/print.c @@ -3,7 +3,7 @@ * * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/print.c,v 1.83 2006/02/12 02:56:21 tgl Exp $ + * $PostgreSQL: pgsql/src/bin/psql/print.c,v 1.84 2006/02/18 22:54:50 petere Exp $ */ #include "postgres_fe.h" #include "common.h" @@ -918,9 +918,6 @@ html_escaped_print(const char *in, FILE *fout) case '"': fputs(""", fout); break; - case '\'': - fputs("'", fout); - break; case ' ': /* protect leading space, for EXPLAIN output */ if (leading_space)