diff options
author | Tom Lane | 2000-01-21 23:32:36 +0000 |
---|---|---|
committer | Tom Lane | 2000-01-21 23:32:36 +0000 |
commit | 7cc0d6ae9dc485d954edce84e28f665ac6151bb9 (patch) | |
tree | 3fd44c6bdd5a5128ed48899ef1ab3e788de7e1c9 /src/include | |
parent | e33f550bc06a0410ae5a64ad16cc29f8ed5a882f (diff) |
Fix tab-complete so it works with old versions of readline that don't
have the rl_completion_append_character variable. The tab completion
behavior doesn't seem to be quite perfect in that situation, but it's
better than failing to build at all...
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/config.h.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/include/config.h.in b/src/include/config.h.in index 472bb68bf6a..ed8356c2937 100644 --- a/src/include/config.h.in +++ b/src/include/config.h.in @@ -454,6 +454,9 @@ extern void srandom(unsigned int seed); /* Set to 1 if you have libhistory.a */ #undef HAVE_LIBHISTORY +/* Set to 1 if your libreadline defines rl_completion_append_character */ +#undef HAVE_RL_COMPLETION_APPEND_CHARACTER + /* Set to 1 if you have getopt_long() (GNU long options) */ #undef HAVE_GETOPT_LONG |