+2013-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
+
+ * isearch.el (isearch-pre-command-hook): Don't build in knowledge about
+ internals of universal-argument.
+
2013-10-11 Eli Zaretskii <eliz@gnu.org>
* menu-bar.el (tty-menu-navigation-map): Remap F10 to tty-menu-exit.
(let* ((key (this-single-command-keys))
(main-event (aref key 0)))
(cond
+ ;; Don't exit Isearch if we're in the middle of some
+ ;; set-temporary-overlay-map thingy like universal-argument--mode.
+ ((not (eq overriding-terminal-local-map isearch-mode-map)))
;; Don't exit Isearch for isearch key bindings.
((commandp (lookup-key isearch-mode-map key nil)))
;; Optionally edit the search string instead of exiting.
;; Handle a scrolling function or prefix argument.
((or (and isearch-allow-prefix
(memq this-command '(universal-argument
- universal-argument-more
- universal-argument-minus
digit-argument negative-argument)))
(and isearch-allow-scroll
(or (eq (get this-command 'isearch-scroll) t)