diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2009-10-27 12:30:12 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2009-10-27 12:30:12 (GMT) |
commit | 632e93fb4007f371e874e4b25badb4981e82ecd0 (patch) | |
tree | 4d3097b2fb9d7e17a181f6227d3d1ef799903ce6 /configure.in | |
parent | 402e28b243233781c0cd95f956aed7e521526a04 (diff) | |
download | cpython-632e93fb4007f371e874e4b25badb4981e82ecd0.zip cpython-632e93fb4007f371e874e4b25badb4981e82ecd0.tar.gz cpython-632e93fb4007f371e874e4b25badb4981e82ecd0.tar.bz2 |
Merged revisions 75531,75725 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r75531 | antoine.pitrou | 2009-10-19 20:17:18 +0200 (lun., 19 oct. 2009) | 4 lines
Issue #5833: Fix extra space character in readline completion with the
GNU readline library version 6.0.
........
r75725 | antoine.pitrou | 2009-10-26 20:16:46 +0100 (lun., 26 oct. 2009) | 4 lines
Some platforms have rl_completion_append_character but not rl_completion_suppress_append.
Reported by Mark D.
........
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.in b/configure.in index cec9705..fa43374 100644 --- a/configure.in +++ b/configure.in @@ -3499,6 +3499,10 @@ then [readline/readline.h], AC_DEFINE(HAVE_RL_COMPLETION_APPEND_CHARACTER, 1, [Define if you have readline 2.2]), ) + AC_EGREP_HEADER([extern int rl_completion_suppress_append;], + [readline/readline.h], + AC_DEFINE(HAVE_RL_COMPLETION_SUPPRESS_APPEND, 1, + [Define if you have rl_completion_suppress_append]), ) fi # check for readline 4.0 |