aboutsummaryrefslogtreecommitdiff
path: root/src/bin/psql/command.c
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2003-02-13 04:08:16 +0000
committerBruce Momjian <bruce@momjian.us>2003-02-13 04:08:16 +0000
commit6d8b8a5e4ddf065794fdf33c0a00a83057651312 (patch)
tree7143289b0ac7348ab81cee373b51e89947c98bca /src/bin/psql/command.c
parent68c67fc8a8ddb06743051f94b98a3ae78ce62b0b (diff)
downloadpostgresql-6d8b8a5e4ddf065794fdf33c0a00a83057651312.tar.gz
postgresql-6d8b8a5e4ddf065794fdf33c0a00a83057651312.zip
[ Have readline save edit history.]
> > > I already posted a one-line patch to implement this, but it doesn't > > seem to hve come through to the list. Here it is inline, instead of as > > an attachment: > > We need this to work without readline as well. (Of course there won't be > any history, but it needs to compile.) <blush> Even after slogging my way through the nesting #ifdefs for readline and win32, I forgot! Let's make that a three line patch, then. Ross J. Reedstrom
Diffstat (limited to 'src/bin/psql/command.c')
-rw-r--r--src/bin/psql/command.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c
index 08beb9fda88..5b727b06bd5 100644
--- a/src/bin/psql/command.c
+++ b/src/bin/psql/command.c
@@ -3,7 +3,7 @@
*
* Copyright 2000-2002 by PostgreSQL Global Development Group
*
- * $Header: /cvsroot/pgsql/src/bin/psql/command.c,v 1.88 2003/01/10 21:57:44 petere Exp $
+ * $Header: /cvsroot/pgsql/src/bin/psql/command.c,v 1.89 2003/02/13 04:08:16 momjian Exp $
*/
#include "postgres_fe.h"
#include "command.h"
@@ -1648,6 +1648,9 @@ do_edit(const char *filename_arg, PQExpBuffer query_buf)
error = true;
}
+#ifdef USE_READLINE
+ replace_history_entry(where_history(),query_buf->data,NULL);
+#endif
fclose(stream);
}