diff options
| author | Jason Rumney | 2005-11-30 22:53:00 +0000 |
|---|---|---|
| committer | Jason Rumney | 2005-11-30 22:53:00 +0000 |
| commit | 76197e286502c3d3baa98c366191706fa9b04004 (patch) | |
| tree | 0615da5bb9dc169876b05323a5e8f5c1f4ca8c50 | |
| parent | 896bd1662f1f15b3984324e44ccedc509a53b40c (diff) | |
| download | emacs-76197e286502c3d3baa98c366191706fa9b04004.tar.gz emacs-76197e286502c3d3baa98c366191706fa9b04004.zip | |
(isearch-mode-map): Avoid exiting search on language-change event.
| -rw-r--r-- | lisp/isearch.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/isearch.el b/lisp/isearch.el index 5f80cdc6f2a..505ff40e6b5 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el | |||
| @@ -386,6 +386,8 @@ A value of nil means highlight all matches." | |||
| 386 | (define-key map [iconify-frame] nil) | 386 | (define-key map [iconify-frame] nil) |
| 387 | (define-key map [make-frame-visible] nil) | 387 | (define-key map [make-frame-visible] nil) |
| 388 | (define-key map [mouse-movement] nil) | 388 | (define-key map [mouse-movement] nil) |
| 389 | (define-key map [language-change] nil) | ||
| 390 | |||
| 389 | ;; For searching multilingual text. | 391 | ;; For searching multilingual text. |
| 390 | (define-key map "\C-\\" 'isearch-toggle-input-method) | 392 | (define-key map "\C-\\" 'isearch-toggle-input-method) |
| 391 | (define-key map "\C-^" 'isearch-toggle-specified-input-method) | 393 | (define-key map "\C-^" 'isearch-toggle-specified-input-method) |