diff options
author | Neil Conway <neilc@samurai.com> | 2004-11-24 04:58:42 +0000 |
---|---|---|
committer | Neil Conway <neilc@samurai.com> | 2004-11-24 04:58:42 +0000 |
commit | e17766c12e13405e4ec20464086eeeb605c83295 (patch) | |
tree | 2ac852b846fc75bda6d1d6ceff9a92f284993cf7 | |
parent | 4acc97d7e4742a0130c93ece34146beda8b851f3 (diff) | |
download | postgresql-e17766c12e13405e4ec20464086eeeb605c83295.tar.gz postgresql-e17766c12e13405e4ec20464086eeeb605c83295.zip |
Trivial fix for a bug introduced in r1.94 of help.c: we want to only
include "\s" in \? output when readline is enabled, but that commit
supressed "\s" whether readline was enabled or not.
-rw-r--r-- | src/bin/psql/help.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c index d9e426ddd65..4a39a3e5948 100644 --- a/src/bin/psql/help.c +++ b/src/bin/psql/help.c @@ -3,10 +3,11 @@ * * Copyright (c) 2000-2004, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/help.c,v 1.96 2004/11/09 14:39:44 petere Exp $ + * $PostgreSQL: pgsql/src/bin/psql/help.c,v 1.97 2004/11/24 04:58:42 neilc Exp $ */ #include "postgres_fe.h" #include "common.h" +#include "input.h" #include "print.h" #include "help.h" |