]> granicus.if.org Git - python/commitdiff
#9907: call rl_initialize early when using editline on OSX
authorR. David Murray <rdmurray@bitdance.com>
Sat, 18 Dec 2010 03:48:32 +0000 (03:48 +0000)
committerR. David Murray <rdmurray@bitdance.com>
Sat, 18 Dec 2010 03:48:32 +0000 (03:48 +0000)
editline rl_initialize apparently discards any mappings done before it
is called, which makes tab revert to file completion instead of inserting
a tab.  So now on OSX we call rl_initialize first if we are using
readline, and then re-read the users .editrc (if any) afterward so they
can still override our defaults.

Patch by Ned Deily, modified by Ronald Oussoren.

Misc/NEWS
Modules/readline.c

index c486a5901ca99189684d3dae2e3a83878d5e73d0..37a23333a8c716ec2268a65fce36059b5d4f4240 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -20,6 +20,9 @@ Core and Builtins
 Library
 -------
 
+- Issue $9907: Fix tab handling on OSX when using editline by calling
+  rl_initialize first, then setting our custom defaults, then reading .editrc.
+
 - Issue #4188: Avoid creating dummy thread objects when logging operations
   from the threading module (with the internal verbose flag activated).
 
index 466ec512e6852acf930fbb2a014b825a9efd0fb8..8337956648384083f63a0a9758a319496ea5d04a 100644 (file)
@@ -889,6 +889,14 @@ setup_readline(void)
         Py_FatalError("not enough memory to save locale");
 #endif
 
+#ifdef __APPLE__
+    /* the libedit readline emulation resets key bindings etc 
+     * when calling rl_initialize.  So call it upfront
+     */
+    if (using_libedit_emulation)
+        rl_initialize();
+#endif /* __APPLE__ */
+
     using_history();
 
     rl_readline_name = "python";
@@ -920,8 +928,13 @@ setup_readline(void)
      * XXX: A bug in the readline-2.2 library causes a memory leak
      * inside this function.  Nothing we can do about it.
      */
-    rl_initialize();
-
+#ifdef __APPLE__
+    if (using_libedit_emulation)
+       rl_read_init_file(NULL);
+    else
+#endif /* __APPLE__ */
+        rl_initialize();
+    
     RESTORE_LOCALE(saved_locale)
 }