summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2004-10-06 19:04:10 +0000
committerBruce Momjian <bruce@momjian.us>2004-10-06 19:04:10 +0000
commitd7e0ebdf8e05f0aa89ec9d5b4b7332f757299973 (patch)
tree84be223718771a396cef346888fe8dd97c84e948 /src
parentc62a5465fba74c9bc1ae2e45b705a633a03fcc46 (diff)
Say "history is not supported" and remove "on this platform" for lack of
readline.
Diffstat (limited to 'src')
-rw-r--r--src/bin/psql/input.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/input.c b/src/bin/psql/input.c
index 769ac882296..ae5ed22aa69 100644
--- a/src/bin/psql/input.c
+++ b/src/bin/psql/input.c
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2004, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/psql/input.c,v 1.39 2004/10/06 18:39:16 momjian Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/input.c,v 1.40 2004/10/06 19:04:10 momjian Exp $
*/
#include "postgres_fe.h"
#include "input.h"
@@ -210,7 +210,7 @@ saveHistory(char *fname)
psql_error("could not save history to file \"%s\": %s\n", fname, strerror(errno));
}
#else
- psql_error("history is not supported on this platform\n");
+ psql_error("history is not supported\n");
#endif
return false;