diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2012-05-27 22:48:20 +0300 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2012-05-27 22:48:20 +0300 |
commit | 8e497c731b481aac15fed5cd006fcd64f2f00de0 (patch) | |
tree | 4d292021b4d96b7840eec9c95d97e74592bc60ec /src | |
parent | 27314d32a883e3c4667d8249c3d4760fed917a12 (diff) | |
download | postgresql-8e497c731b481aac15fed5cd006fcd64f2f00de0.tar.gz postgresql-8e497c731b481aac15fed5cd006fcd64f2f00de0.zip |
psql: Remove notice about readline from --version output
This was from a time when readline support wasn't standard. And it
doesn't help analyzing current line editing library problems.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/psql/startup.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/bin/psql/startup.c b/src/bin/psql/startup.c index 9e6917cbe4b..1c2a5b3577e 100644 --- a/src/bin/psql/startup.c +++ b/src/bin/psql/startup.c @@ -651,10 +651,6 @@ static void showVersion(void) { puts("psql (PostgreSQL) " PG_VERSION); - -#if defined(USE_READLINE) - puts(_("contains support for command-line editing")); -#endif } |