]> granicus.if.org Git - python/commitdiff
Only set rl_completion_display_matches_hook if there
authorMartin v. Löwis <martin@v.loewis.de>
Mon, 12 Nov 2007 04:53:02 +0000 (04:53 +0000)
committerMartin v. Löwis <martin@v.loewis.de>
Mon, 12 Nov 2007 04:53:02 +0000 (04:53 +0000)
is a Python hook function. Fixes #1425.

Modules/readline.c

index f620f6229f1ba5ff027b045cef052be63b938f70..85bbafdf4ed88b8d4a9a9ea818d4d8454c80e37f 100644 (file)
 extern char **completion_matches(char *, rl_compentry_func_t *);
 #endif
 
+static void
+on_completion_display_matches_hook(char **matches,
+                                  int num_matches, int max_length);
+
 
 /* Exported function to send one line to readline's init file parser */
 
@@ -208,8 +212,17 @@ static PyObject *pre_input_hook = NULL;
 static PyObject *
 set_completion_display_matches_hook(PyObject *self, PyObject *args)
 {
-       return set_hook("completion_display_matches_hook",
+       PyObject *result = set_hook("completion_display_matches_hook",
                        &completion_display_matches_hook, args);
+#ifdef HAVE_RL_COMPLETION_DISPLAY_MATCHES_HOOK
+       /* We cannot set this hook globally, since it replaces the
+          default completion display. */
+       rl_completion_display_matches_hook =
+         completion_display_matches_hook ? 
+               (rl_compdisp_func_t *)on_completion_display_matches_hook : 0;
+#endif
+       return result;
+
 }
 
 PyDoc_STRVAR(doc_set_completion_display_matches_hook,
@@ -668,39 +681,37 @@ static void
 on_completion_display_matches_hook(char **matches,
                                   int num_matches, int max_length)
 {
-       if (completion_display_matches_hook != NULL) {
-               int i;
-               PyObject *m, *s;
-               PyObject *r;
+       int i;
+       PyObject *m, *s;
+       PyObject *r;
 #ifdef WITH_THREAD           
-               PyGILState_STATE gilstate = PyGILState_Ensure();
+       PyGILState_STATE gilstate = PyGILState_Ensure();
 #endif
-               m = PyList_New(num_matches);
-               for (i = 0; i < num_matches; i++) {
-                 s = PyString_FromString(matches[i+1]);
-                 PyList_SetItem(m, i, s);
-               }
-
-               r = PyObject_CallFunction(completion_display_matches_hook,
-                                         "sOi", matches[0], m, max_length);
+       m = PyList_New(num_matches);
+       for (i = 0; i < num_matches; i++) {
+               s = PyString_FromString(matches[i+1]);
+               PyList_SetItem(m, i, s);
+       }
 
-               Py_DECREF(m);
+       r = PyObject_CallFunction(completion_display_matches_hook,
+                                 "sOi", matches[0], m, max_length);
 
-               if (r == NULL ||
-                   (r != Py_None && PyInt_AsLong(r) == -1 && PyErr_Occurred())) {
-                 goto error;
-               }
+       Py_DECREF(m);
+       
+       if (r == NULL ||
+           (r != Py_None && PyInt_AsLong(r) == -1 && PyErr_Occurred())) {
+               goto error;
+       }
 
-               Py_DECREF(r);
-               goto done;
-         error:
-               PyErr_Clear();
-               Py_XDECREF(r);
-         done:
+       Py_DECREF(r);
+       goto done;
+  error:
+       PyErr_Clear();
+       Py_XDECREF(r);
+  done:
 #ifdef WITH_THREAD           
-               PyGILState_Release(gilstate);
+       PyGILState_Release(gilstate);
 #endif
-       }
 }
 
 
@@ -781,10 +792,6 @@ 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 */
-#ifdef HAVE_RL_COMPLETION_DISPLAY_MATCHES_HOOK
-       rl_completion_display_matches_hook =
-         (rl_compdisp_func_t *)on_completion_display_matches_hook;
-#endif
        rl_startup_hook = (Function *)on_startup_hook;
 #ifdef HAVE_RL_PRE_INPUT_HOOK
        rl_pre_input_hook = (Function *)on_pre_input_hook;