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

Commit 87a8c72

Browse files
committed
clean up startup banner
1 parent e6a0e4e commit 87a8c72

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

src/bin/psql/startup.c

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -177,15 +177,14 @@ main(int argc, char **argv)
177177
if (!GetVariable(settings.vars, "quiet") && !settings.notty && !options.action)
178178
{
179179
puts("Welcome to psql, the PostgreSQL interactive terminal.\n"
180-
"(Please type \\copyright to see the distribution terms of PostgreSQL.)");
180+
"(Type \\copyright to see the distribution terms.)");
181181

182182
//showVersion(&settings, false);
183183

184-
puts("\n"
185-
"Type \\h for help with SQL commands,\n"
184+
puts("Type \\h for help with SQL commands,\n"
186185
" \\? for help on internal slash commands,\n"
187-
" \\q to quit,\n"
188-
" \\g or terminate with semicolon to execute query.");
186+
" \\g or terminate with semicolon to execute query."
187+
" \\q to quit,\n");
189188
}
190189

191190
process_psqlrc(&settings);

0 commit comments

Comments
 (0)