branch: externals/isearch-mb
commit 512980ddee629d031a68398bb7375fd0a89d8340
Author: Augusto Stoffel <[email protected]>
Commit: Augusto Stoffel <[email protected]>

    Unset overriding-terminal-local-map
    
    This is set to isearch-mode-map, which is made empty some lines below.
    But the non-nil value interferes with input methods.
    
    Closes #23.
---
 isearch-mb.el | 1 +
 1 file changed, 1 insertion(+)

diff --git a/isearch-mb.el b/isearch-mb.el
index c97e81c20d..f58b75bf7c 100644
--- a/isearch-mb.el
+++ b/isearch-mb.el
@@ -206,6 +206,7 @@ minibuffer."
 
 (defun isearch-mb--session ()
   "Read search string from the minibuffer."
+  (setq overriding-terminal-local-map nil)
   (condition-case nil
       (apply
        (catch 'isearch-mb--continue

Reply via email to