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.
This commit is contained in:
Peter Eisentraut 2012-05-27 22:48:20 +03:00
parent 27314d32a8
commit 8e497c731b

View 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
}