Skip to content

Commit 4a1c29f

Browse files
committed
Improve \? wording, remove 'internal'.
1 parent c60128e commit 4a1c29f

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

doc/TODO

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
TODO list for PostgreSQL
22
========================
3-
Last updated: Thu Feb 12 13:11:14 EST 2004
3+
Last updated: Thu Feb 12 13:14:40 EST 2004
44

55
Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
66

@@ -456,7 +456,7 @@ Source Code
456456
* Acquire lock on a relation before building a relcache entry for it
457457
* Research interaction of setitimer() and sleep() used by statement_timeout
458458
* -Add checks for fclose() failure (Tom)
459-
* Change CVS $PostgreSQL: pgsql/doc/TODO,v 1.1211 2004/02/12 18:11:16 momjian Exp $ to $PostgreSQL: pgsql/doc/TODO,v 1.1211 2004/02/12 18:11:16 momjian Exp $
459+
* Change CVS $PostgreSQL: pgsql/doc/TODO,v 1.1212 2004/02/12 19:58:16 momjian Exp $ to $PostgreSQL: pgsql/doc/TODO,v 1.1212 2004/02/12 19:58:16 momjian Exp $
460460
* Exit postmaster if postgresql.conf can not be opened
461461
* Rename /scripts directory because they are all C programs now
462462
* Allow the regression tests to start postmaster with -i so the tests

doc/src/sgml/ref/psql-ref.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$PostgreSQL: pgsql/doc/src/sgml/ref/psql-ref.sgml,v 1.104 2004/01/20 23:48:56 tgl Exp $
2+
$PostgreSQL: pgsql/doc/src/sgml/ref/psql-ref.sgml,v 1.105 2004/02/12 19:58:16 momjian Exp $
33
PostgreSQL documentation
44
-->
55

@@ -524,7 +524,7 @@ Welcome to psql &version;, the PostgreSQL interactive terminal.
524524

525525
Type: \copyright for distribution terms
526526
\h for help with SQL commands
527-
\? for help on internal slash commands
527+
\? for help with psql commands
528528
\g or terminate with semicolon to execute query
529529
\q to quit
530530

doc/src/sgml/start.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$PostgreSQL: pgsql/doc/src/sgml/start.sgml,v 1.34 2004/02/12 16:38:04 momjian Exp $
2+
$PostgreSQL: pgsql/doc/src/sgml/start.sgml,v 1.35 2004/02/12 19:58:16 momjian Exp $
33
-->
44

55
<chapter id="tutorial-start">
@@ -321,7 +321,7 @@ Welcome to psql &version;, the PostgreSQL interactive terminal.
321321

322322
Type: \copyright for distribution terms
323323
\h for help with SQL commands
324-
\? for help on internal slash commands
324+
\? for help with psql commands
325325
\g or terminate with semicolon to execute query
326326
\q to quit
327327

src/bin/psql/startup.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* Copyright (c) 2000-2003, PostgreSQL Global Development Group
55
*
6-
* $PostgreSQL: pgsql/src/bin/psql/startup.c,v 1.83 2004/01/25 03:07:22 neilc Exp $
6+
* $PostgreSQL: pgsql/src/bin/psql/startup.c,v 1.84 2004/02/12 19:58:16 momjian Exp $
77
*/
88
#include "postgres_fe.h"
99

@@ -267,8 +267,8 @@ main(int argc, char *argv[])
267267
printf(gettext("Welcome to %s %s, the PostgreSQL interactive terminal.\n\n"
268268
"Type: \\copyright for distribution terms\n"
269269
" \\h for help with SQL commands\n"
270-
" \\? for help on internal slash commands\n"
271-
" \\g or terminate with semicolon to execute query\n"
270+
" \\? for help with psql commands\n"
271+
" \\g or terminate with semicolon to execute query\n"
272272
" \\q to quit\n\n"),
273273
pset.progname, PG_VERSION);
274274
#ifdef USE_SSL

0 commit comments

Comments
 (0)