]> granicus.if.org Git - postgresql/commitdiff
' is not valid HTML 4.01, so print the plain character instead.
authorPeter Eisentraut <peter_e@gmx.net>
Sat, 18 Feb 2006 22:54:50 +0000 (22:54 +0000)
committerPeter Eisentraut <peter_e@gmx.net>
Sat, 18 Feb 2006 22:54:50 +0000 (22:54 +0000)
src/bin/psql/print.c

index 1b1ff260f843384cbe4f68b45b37081ae0971ff0..98c61a5edae12cd4ee3668f7a050a624c5e407f0 100644 (file)
@@ -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("&quot;", fout);
                                break;
-                       case '\'':
-                               fputs("&apos;", fout);
-                               break;
                        case ' ':
                                /* protect leading space, for EXPLAIN output */
                                if (leading_space)