diff options
author | Bruce Momjian <bruce@momjian.us> | 2005-06-09 18:40:06 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2005-06-09 18:40:06 +0000 |
commit | 5c4955981e354af25c9c6eeb9e4246530bcd35a4 (patch) | |
tree | 462a371e44d5b3b230b9acf136aa03d7028fb8c9 /src | |
parent | 82358ca936f93dbbc49455ce8c3fd3d8e7a8cf3e (diff) | |
download | postgresql-5c4955981e354af25c9c6eeb9e4246530bcd35a4.tar.gz postgresql-5c4955981e354af25c9c6eeb9e4246530bcd35a4.zip |
\(rs should be \\(rs, per Tom.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/psql/print.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/print.c b/src/bin/psql/print.c index e0848624170..20428290d1b 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.56 2005/06/09 15:27:27 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/psql/print.c,v 1.57 2005/06/09 18:40:06 momjian Exp $ */ #include "postgres_fe.h" #include "common.h" @@ -1006,7 +1006,7 @@ troff_ms_escaped_print(const char *in, FILE *fout) switch (*p) { case '\\': - fputs("\(rs", fout); + fputs("\\(rs", fout); break; default: fputc(*p, fout); |