]> granicus.if.org Git - python/commitdiff
use new readline function types (closes #20374)
authorBenjamin Peterson <benjamin@python.org>
Fri, 24 Jan 2014 05:32:12 +0000 (00:32 -0500)
committerBenjamin Peterson <benjamin@python.org>
Fri, 24 Jan 2014 05:32:12 +0000 (00:32 -0500)
Misc/NEWS
Modules/readline.c

index 43727016fbc7c6461f5a9623c20d99baca93bf97..2de9b3124bb41a02c2ac7c3e330b45b452c551d5 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -56,6 +56,8 @@ Library
   loop this caused is now avoided by checking if the expected context is
   already set before trying to fix it.
 
+- Issue #20374: Fix build with GNU readline >= 6.3.
+
 - Issue #20311: select.epoll.poll() now rounds the timeout away from zero,
   instead of rounding towards zero. For example, a timeout of one microsecond
   is now rounded to one millisecond, instead of being rounded to zero.
index 096c6d1f7a435f90369a007f70e8af7a93fa7354..8cf98554c0f3ab9ed7a029ee78734e1a173199cd 100644 (file)
@@ -936,12 +936,12 @@ setup_readline(void)
     rl_bind_key_in_map ('\t', rl_complete, emacs_meta_keymap);
     rl_bind_key_in_map ('\033', rl_complete, emacs_meta_keymap);
     /* Set our hook functions */
-    rl_startup_hook = (Function *)on_startup_hook;
+    rl_startup_hook = (rl_hook_func_t *)on_startup_hook;
 #ifdef HAVE_RL_PRE_INPUT_HOOK
-    rl_pre_input_hook = (Function *)on_pre_input_hook;
+    rl_pre_input_hook = (rl_hook_func_t *)on_pre_input_hook;
 #endif
     /* Set our completion function */
-    rl_attempted_completion_function = (CPPFunction *)flex_complete;
+    rl_attempted_completion_function = (rl_completion_func_t *)flex_complete;
     /* Set Python word break characters */
     completer_word_break_characters =
         rl_completer_word_break_characters =