From: Bruce Momjian <bruce@momjian.us>
Date: Fri, 5 Nov 1999 18:21:09 +0000 (+0000)
Subject: Update psql banner
X-Git-Tag: REL7_0~1194
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5e3189eaff319f5942de7d5b3971dd5d6752e241;p=postgresql

Update psql banner
---

diff --git a/doc/src/sgml/ref/psql-ref.sgml b/doc/src/sgml/ref/psql-ref.sgml
index b3a350bf98..1dbc930eba 100644
--- a/doc/src/sgml/ref/psql-ref.sgml
+++ b/doc/src/sgml/ref/psql-ref.sgml
@@ -1,5 +1,5 @@
 <!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/psql-ref.sgml,v 1.16 1999/11/05 15:44:56 momjian Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/psql-ref.sgml,v 1.17 1999/11/05 18:21:08 momjian Exp $
 Postgres documentation
 -->
 
@@ -133,11 +133,11 @@ Postgres documentation
 $ <userinput>psql testdb</userinput>
 Welcome to psql, the PostgreSQL interactive terminal.
 
-Type \copyright for distribution terms
-     \h for help with SQL commands
-     \? for help on internal slash commands
-     \g or terminate with semicolon to execute query
-     \q to quit
+Type:  \copyright for distribution terms
+       \h for help with SQL commands
+       \? for help on internal slash commands
+       \g or terminate with semicolon to execute query
+       \q to quit
 
 testdb=>
     </programlisting>
diff --git a/src/bin/psql/startup.c b/src/bin/psql/startup.c
index 2b08c74e15..c94f2526b3 100644
--- a/src/bin/psql/startup.c
+++ b/src/bin/psql/startup.c
@@ -177,15 +177,15 @@ main(int argc, char **argv)
 
 	if (!GetVariable(settings.vars, "quiet") && !settings.notty && !options.action)
 	{
-		puts("Welcome to psql, the PostgreSQL interactive terminal.\n\n");
+		puts("Welcome to psql, the PostgreSQL interactive terminal.\n");
 
 		//showVersion(&settings, false);
 
-		puts("Type \\copyright for distribution terms\n"
-			 "     \\h for help with SQL commands\n"
-			 "     \\? for help on internal slash commands\n"
-			 "     \\g or terminate with semicolon to execute query\n"
-			 "     \\q to quit\n");
+		puts("Type:  \\copyright for distribution terms\n"
+			 "       \\h for help with SQL commands\n"
+			 "       \\? for help on internal slash commands\n"
+			 "       \\g or terminate with semicolon to execute query\n"
+			 "       \\q to quit\n");
 	}
 
 	process_psqlrc(&settings);