diff options
| author | Gerd Moellmann | 2001-07-25 14:51:10 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-07-25 14:51:10 +0000 |
| commit | 17635d50f6e2376ccee22aa37ee50f1edff085cd (patch) | |
| tree | cf9d31e2bbee3008a2cf5da887c87fe2c42c1928 | |
| parent | 3fb01f36c5c20ac9e939b3ec59bbef8f91d56fce (diff) | |
| download | emacs-17635d50f6e2376ccee22aa37ee50f1edff085cd.tar.gz emacs-17635d50f6e2376ccee22aa37ee50f1edff085cd.zip | |
(isearch-other-meta-char): Fix last change.
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/isearch.el | 3 |
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 @@ | |||
| 1 | 2001-07-25 Gerd Moellmann <gerd@gnu.org> | 1 | 2001-07-25 Gerd Moellmann <gerd@gnu.org> |
| 2 | 2 | ||
| 3 | * isearch.el (isearch-other-meta-char): Fix last change. | ||
| 4 | |||
| 3 | * isearch.el (isearch-other-meta-char): Don't modify mode-line and | 5 | * isearch.el (isearch-other-meta-char): Don't modify mode-line and |
| 4 | similar events for which fake prefix keys are generated. It's no | 6 | similar events for which fake prefix keys are generated. It's no |
| 5 | longer necessary since read_key_sequence doesn't modify these | 7 | 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." | |||
| 1240 | (listp (aref key 1)) | 1240 | (listp (aref key 1)) |
| 1241 | (not (numberp (posn-point | 1241 | (not (numberp (posn-point |
| 1242 | (event-start (aref key 1)))))) | 1242 | (event-start (aref key 1)))))) |
| 1243 | (setq main-event (pop unread-command-events))) | 1243 | (pop unread-command-events) |
| 1244 | (setq main-event (car unread-command-events))) | ||
| 1244 | 1245 | ||
| 1245 | ;; If we got a mouse click, maybe it was read with the buffer | 1246 | ;; If we got a mouse click, maybe it was read with the buffer |
| 1246 | ;; it was clicked on. If so, that buffer, not the current one, | 1247 | ;; it was clicked on. If so, that buffer, not the current one, |