Thread: Minor pedantry for "help" text

Minor pedantry for "help" text

From
Neil Conway
Date:
Attached is a patch that makes some minor changes to the text emitted by
the new "help" command. Previous output:

postgres=# help

You are using psql, the command-line interface to PostgreSQL.
    \? for psql help
    \h or \help for SQL help

    \g or ";" to execute a query
    \q to quit psql

    \copyright to view the copyright

postgres=#

New output:

postgres=# help
You are using psql, the command-line interface to PostgreSQL.
Type:  \copyright for distribution terms
       \h for help with SQL commands
       \? for help with psql commands
       \g or terminate with semicolon to execute query
       \q to quit
postgres=#

The newlines in the previous text were inconsistent with psql error
message style elsewhere, aside from being distracting. The advice on
commands to enter next was also just emitted, without actually telling
the user that these are possible inputs. Essentially the text was a
regression from the text we've always used in the startup banner, so I
just re-instituted the old text.

-Neil, doing his best to suppress his aesthetic objection to having
"help" be valid psql input in the first place


Attachment

Re: Minor pedantry for "help" text

From
Neil Conway
Date:
On Mon, 2008-06-09 at 00:25 -0700, Neil Conway wrote:
> Attached is a patch that makes some minor changes to the text emitted by
> the new "help" command.

Applied to HEAD.

-Neil