From: Peter Eisentraut Date: Sun, 27 May 2012 19:48:20 +0000 (+0300) Subject: psql: Remove notice about readline from --version output X-Git-Tag: REL9_2_BETA2~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8e497c731b481aac15fed5cd006fcd64f2f00de0;p=thirdparty%2Fpostgresql.git 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. --- 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 }