From 5c4955981e354af25c9c6eeb9e4246530bcd35a4 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Thu, 9 Jun 2005 18:40:06 +0000 Subject: [PATCH] \(rs should be \\(rs, per Tom. --- src/bin/psql/print.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/psql/print.c b/src/bin/psql/print.c index e084862417..20428290d1 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); -- 2.40.0