From 8e497c731b481aac15fed5cd006fcd64f2f00de0 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Sun, 27 May 2012 22:48:20 +0300 Subject: [PATCH] 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. --- src/bin/psql/startup.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/bin/psql/startup.c b/src/bin/psql/startup.c index 9e6917cbe4..1c2a5b3577 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 } -- 2.40.0