aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2001-10-18 10:06:01 +0000
committerGerd Moellmann2001-10-18 10:06:01 +0000
commit3f482bc0e547e953eeeb7376e1d4ca8ce0d784b7 (patch)
treedacff53f16c9081445601800ec5b7c2ff36b0e0f
parentd0035f7a52ea876d6dce3fe56bf9bd8ca0c1e76b (diff)
downloademacs-3f482bc0e547e953eeeb7376e1d4ca8ce0d784b7.tar.gz
emacs-3f482bc0e547e953eeeb7376e1d4ca8ce0d784b7.zip
(isearch-mode-map): Bind `mouse-movement' to nil.
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/isearch.el1
2 files changed, 3 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 05234eb6624..9242bbd4ec4 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
12001-10-18 Gerd Moellmann <gerd@gnu.org> 12001-10-18 Gerd Moellmann <gerd@gnu.org>
2 2
3 * isearch.el (isearch-mode-map): Bind `mouse-movement' to nil.
4
3 * obsolete/hilit19.el (hilit-lookup-face-create): Call 5 * obsolete/hilit19.el (hilit-lookup-face-create): Call
4 set-face-font only if display-graphic-p. 6 set-face-font only if display-graphic-p.
5 (toplevel): Remove references to window-system. 7 (toplevel): Remove references to window-system.
diff --git a/lisp/isearch.el b/lisp/isearch.el
index de6b7f6321f..5d770d89706 100644
--- a/lisp/isearch.el
+++ b/lisp/isearch.el
@@ -312,6 +312,7 @@ Default value, nil, means edit the string instead."
312 (define-key map [delete-frame] nil) 312 (define-key map [delete-frame] nil)
313 (define-key map [iconify-frame] nil) 313 (define-key map [iconify-frame] nil)
314 (define-key map [make-frame-visible] nil) 314 (define-key map [make-frame-visible] nil)
315 (define-key map [mouse-movement] nil)
315 ;; For searching multilingual text. 316 ;; For searching multilingual text.
316 (define-key map "\C-\\" 'isearch-toggle-input-method) 317 (define-key map "\C-\\" 'isearch-toggle-input-method)
317 (define-key map "\C-^" 'isearch-toggle-specified-input-method) 318 (define-key map "\C-^" 'isearch-toggle-specified-input-method)