diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-02-13 14:57:15 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-02-13 14:57:15 +0000 |
commit | 562f63b0a7caaad0b909353bd24fe2e50156de73 (patch) | |
tree | 34637b4a0319d8cb3a2333c4cb9b222e8c3fd401 | |
parent | 589b67d34b5dafc80eab99fdd15429aa7cef440a (diff) | |
download | postgresql-562f63b0a7caaad0b909353bd24fe2e50156de73.tar.gz postgresql-562f63b0a7caaad0b909353bd24fe2e50156de73.zip |
Fix build failure when not USE_READLINE. Sergey E. Koposov
-rw-r--r-- | src/bin/psql/input.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/bin/psql/input.c b/src/bin/psql/input.c index 6b1f78af0a4..7f4e2493cbe 100644 --- a/src/bin/psql/input.c +++ b/src/bin/psql/input.c @@ -3,7 +3,7 @@ * * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/input.c,v 1.48 2006/02/12 05:24:38 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/psql/input.c,v 1.49 2006/02/13 14:57:15 tgl Exp $ */ #include "postgres_fe.h" @@ -213,7 +213,8 @@ gets_fromFile(FILE *source) } -static void encode_history() +#ifdef USE_READLINE +static void encode_history(void) { HIST_ENTRY *cur_hist; char *cur_ptr; @@ -225,7 +226,7 @@ static void encode_history() *cur_ptr = NL_IN_HISTORY; } -static void decode_history() +static void decode_history(void) { HIST_ENTRY *cur_hist; char *cur_ptr; @@ -236,6 +237,7 @@ static void decode_history() if (*cur_ptr == NL_IN_HISTORY) *cur_ptr = '\n'; } +#endif /* USE_READLINE */ /* @@ -290,7 +292,6 @@ initializeInput(int flags) } - bool saveHistory(char *fname) { @@ -311,7 +312,6 @@ saveHistory(char *fname) } - static void #ifdef HAVE_ATEXIT finishInput(void) |