diff options
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/isearch.el | 1 |
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 @@ | |||
| 1 | 2001-10-18 Gerd Moellmann <gerd@gnu.org> | 1 | 2001-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) |