summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorGerd Moellmann <gerd@gnu.org>2001-07-25 14:51:10 +0000
committerGerd Moellmann <gerd@gnu.org>2001-07-25 14:51:10 +0000
commit17635d50f6e2376ccee22aa37ee50f1edff085cd (patch)
treecf9d31e2bbee3008a2cf5da887c87fe2c42c1928 /lisp
parent3fb01f36c5c20ac9e939b3ec59bbef8f91d56fce (diff)
downloademacs-17635d50f6e2376ccee22aa37ee50f1edff085cd.tar.gz
emacs-17635d50f6e2376ccee22aa37ee50f1edff085cd.tar.bz2
emacs-17635d50f6e2376ccee22aa37ee50f1edff085cd.zip
(isearch-other-meta-char): Fix last change.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/isearch.el3
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index ccf7ab71d0b..03d3b9cc0e9 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
2001-07-25 Gerd Moellmann <gerd@gnu.org>
+ * isearch.el (isearch-other-meta-char): Fix last change.
+
* isearch.el (isearch-other-meta-char): Don't modify mode-line and
similar events for which fake prefix keys are generated. It's no
longer necessary since read_key_sequence doesn't modify these
diff --git a/lisp/isearch.el b/lisp/isearch.el
index 1052708e15b..ef69ff23cb6 100644
--- a/lisp/isearch.el
+++ b/lisp/isearch.el
@@ -1240,7 +1240,8 @@ and the meta character is unread so that it applies to editing the string."
(listp (aref key 1))
(not (numberp (posn-point
(event-start (aref key 1))))))
- (setq main-event (pop unread-command-events)))
+ (pop unread-command-events)
+ (setq main-event (car unread-command-events)))
;; If we got a mouse click, maybe it was read with the buffer
;; it was clicked on. If so, that buffer, not the current one,