Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 8f4559d

Browse files
committed
Fix \. in manual page.
1 parent 8a1a39c commit 8f4559d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/man/libpq.3

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.\" This is -*-nroff-*-
22
.\" XXX standard disclaimer belongs here....
3-
.\" $Header: /cvsroot/pgsql/src/man/Attic/libpq.3,v 1.7 1997/10/17 02:11:49 momjian Exp $
3+
.\" $Header: /cvsroot/pgsql/src/man/Attic/libpq.3,v 1.8 1997/10/22 02:08:38 momjian Exp $
44
.TH LIBPQ INTRO 03/12/94 PostgreSQL PostgreSQL
55
.SH DESCRIPTION
66
Libpq is the programmer's interface to Postgres. Libpq is a set of
@@ -506,7 +506,7 @@ Sends a null-terminated
506506
.I string
507507
to the backend server.
508508
.IP
509-
The application must explicitly send the single character \*(lq.\*(rq
509+
The application must explicitly send the characters \*(lq\\.\*(rq
510510
to indicate to the backend that it has finished sending its data.
511511
.nf
512512
void PQputline(PGconn *conn,
@@ -536,7 +536,7 @@ PQexec(conn, "copy foo from stdin");
536536
PQputline(conn, "3<TAB>hello world<TAB>4.5\en");
537537
PQputline(conn,"4<TAB>goodbye world<TAB>7.11\en");
538538
\&...
539-
PQputline(conn,".\en");
539+
PQputline(conn,"\\.\en");
540540
PQendcopy(conn);
541541
.fi
542542
.PP

0 commit comments

Comments
 (0)