]> granicus.if.org Git - postgresql/commitdiff
psql: Remove notice about readline from --version output
authorPeter Eisentraut <peter_e@gmx.net>
Sun, 27 May 2012 19:48:20 +0000 (22:48 +0300)
committerPeter Eisentraut <peter_e@gmx.net>
Sun, 27 May 2012 19:48:20 +0000 (22:48 +0300)
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

index 9e6917cbe4bbfc8e2d931af9e58fe8e5f1f041cf..1c2a5b3577e245ef41af687962496a93ab7835f8 100644 (file)
@@ -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
 }