mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
\(rs should be \\(rs, per Tom.
This commit is contained in:
parent
82358ca936
commit
5c4955981e
@ -3,7 +3,7 @@
|
|||||||
*
|
*
|
||||||
* Copyright (c) 2000-2005, PostgreSQL Global Development Group
|
* 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 "postgres_fe.h"
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
@ -1006,7 +1006,7 @@ troff_ms_escaped_print(const char *in, FILE *fout)
|
|||||||
switch (*p)
|
switch (*p)
|
||||||
{
|
{
|
||||||
case '\\':
|
case '\\':
|
||||||
fputs("\(rs", fout);
|
fputs("\\(rs", fout);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
fputc(*p, fout);
|
fputc(*p, fout);
|
||||||
|
Loading…
Reference in New Issue
Block a user