aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer <[email protected]>1995-06-16 06:10:21 +0000
committerKarl Heuer <[email protected]>1995-06-16 06:10:21 +0000
commitc79552226ebeb4e7c711e7d5b9d0c1c3fae6ac7d (patch)
treeb3f55162035213d6254b37a24ff612da9ffd9b3f
parent217258d52e506f63673cace6f488d5da11646178 (diff)
(isearch-mode): Use overriding-terminal-local-map, not overriding-local-map.
(isearch-done): Likewise.
-rw-r--r--lisp/isearch.el5
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/isearch.el b/lisp/isearch.el
index c14a6d0ce4..015399cffb 100644
--- a/lisp/isearch.el
+++ b/lisp/isearch.el
@@ -500,8 +500,7 @@ is treated as a regexp. See \\[isearch-forward] for more info."
(isearch-push-state)
- (make-local-variable 'overriding-local-map)
- (setq overriding-local-map isearch-mode-map)
+ (setq overriding-terminal-local-map isearch-mode-map)
(isearch-update)
(run-hooks 'isearch-mode-hook)
@@ -559,7 +558,7 @@ is treated as a regexp. See \\[isearch-forward] for more info."
(setq mouse-leave-buffer-hook nil)
;; Called by all commands that terminate isearch-mode.
;; If NOPUSH is non-nil, we don't push the string on the search ring.
- (setq overriding-local-map nil)
+ (setq overriding-terminal-local-map nil)
;; (setq pre-command-hook isearch-old-pre-command-hook) ; for lemacs
(isearch-dehighlight t)
(let ((found-start (window-start (selected-window)))