diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-12-10 03:59:30 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-12-10 03:59:30 +0000 |
commit | 77a47299366e0246e3ec7419a9f8472281394b1e (patch) | |
tree | f68c0692a91f465a5b3b1f4e765f0a7e61e936c4 /src/bin/psql/command.c | |
parent | 97dec77fab612cfa285f6bd3dd5463a0d55526b2 (diff) | |
download | postgresql-77a47299366e0246e3ec7419a9f8472281394b1e.tar.gz postgresql-77a47299366e0246e3ec7419a9f8472281394b1e.zip |
This should fix the \e (\p, \g, ...) behaviour on an empty query buffer.
Also, minor tweakage of tab completion, and I hope the output is flushed
on time now.
--
Peter Eisentraut Sernanders väg 10:115
Diffstat (limited to 'src/bin/psql/command.c')
-rw-r--r-- | src/bin/psql/command.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c index 59b596d6f22..9489a8e2af6 100644 --- a/src/bin/psql/command.c +++ b/src/bin/psql/command.c @@ -624,7 +624,7 @@ exec_command(const char *cmd, if (!options[0]) { - fprintf(stderr, "Usage \\%s <filename>\n", cmd); + fprintf(stderr, "Usage: \\%s <filename>\n", cmd); success = false; } else |