diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2006-02-18 22:54:50 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2006-02-18 22:54:50 +0000 |
commit | 3228a92ccd37201355b3c5f3db5b1d40967eb818 (patch) | |
tree | b05b05f74e6180dcb300c627992a249bd2082af5 /src | |
parent | ce9b75db6bb1beeb1561150f6e59a2a5c5a4ec83 (diff) | |
download | postgresql-3228a92ccd37201355b3c5f3db5b1d40967eb818.tar.gz postgresql-3228a92ccd37201355b3c5f3db5b1d40967eb818.zip |
' is not valid HTML 4.01, so print the plain character instead.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/psql/print.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/bin/psql/print.c b/src/bin/psql/print.c index 1b1ff260f84..98c61a5edae 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) |