]> granicus.if.org Git - python/commitdiff
Fix compiler warning about unused static function.
authorGeorg Brandl <georg@python.org>
Mon, 18 Oct 2010 07:27:55 +0000 (07:27 +0000)
committerGeorg Brandl <georg@python.org>
Mon, 18 Oct 2010 07:27:55 +0000 (07:27 +0000)
Modules/readline.c

index 18908ef4e6e2345afcd53bf09bfa437c7765e7d4..bad8586b927034a681228457e2967d53880b2839 100644 (file)
@@ -64,10 +64,11 @@ static int using_libedit_emulation = 0;
 static const char libedit_version_tag[] = "EditLine wrapper";
 #endif /* __APPLE__ */
 
+#ifdef HAVE_RL_COMPLETION_DISPLAY_MATCHES_HOOK
 static void
 on_completion_display_matches_hook(char **matches,
                                    int num_matches, int max_length);
-
+#endif
 
 /* Exported function to send one line to readline's init file parser */
 
@@ -774,6 +775,7 @@ on_pre_input_hook(void)
 
 /* C function to call the Python completion_display_matches */
 
+#ifdef HAVE_RL_COMPLETION_DISPLAY_MATCHES_HOOK
 static void
 on_completion_display_matches_hook(char **matches,
                                    int num_matches, int max_length)
@@ -853,6 +855,7 @@ on_completion(const char *text, int state)
     }
     return result;
 }
+#endif
 
 
 /* A more flexible constructor that saves the "begidx" and "endidx"