[ 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
This commit is contained in:
Bruce Momjian 2003-02-13 04:08:16 +00:00
parent 68c67fc8a8
commit 6d8b8a5e4d

View File

@ -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);
}