Mercurial > emacs
changeset 85720:79ffe1cb3583
(isearch-other-meta-char): Call `isearch-edit-string' when mouse is
clicked on the isearch message.
(isearch-resume): Call `isearch-update' at the end. Rename argument
`search' to `string' to conform to the isearch terminology.
author | Juri Linkov <juri@jurta.org> |
---|---|
date | Sun, 28 Oct 2007 14:49:07 +0000 |
parents | 1655a8cabb9d |
children | 94e1a5d0b83d |
files | lisp/isearch.el |
diffstat | 1 files changed, 11 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/isearch.el Sun Oct 28 14:48:18 2007 +0000 +++ b/lisp/isearch.el Sun Oct 28 14:49:07 2007 +0000 @@ -1738,6 +1738,12 @@ (isearch-back-into-window (eq ab-bel 'above) isearch-point) (goto-char isearch-point))) (isearch-update)) + ;; A mouse click on the isearch message starts editing the search string + ((and (eq (car-safe main-event) 'down-mouse-1) + (window-minibuffer-p (posn-window (event-start main-event)))) + ;; Swallow the up-event. + (read-event) + (isearch-edit-string)) (search-exit-option (let (window) (isearch-unread-key-sequence keylist) @@ -2499,19 +2505,20 @@ (run-at-time lazy-highlight-interval nil 'isearch-lazy-highlight-update))))))))) -(defun isearch-resume (search regexp word forward message case-fold) +(defun isearch-resume (string regexp word forward message case-fold) "Resume an incremental search. -SEARCH is the string or regexp searched for. +STRING is the string or regexp searched for. REGEXP non-nil means the resumed search was a regexp search. WORD non-nil means resume a word search. FORWARD non-nil means resume a forward search. MESSAGE is the echo-area message recorded for the search resumed. CASE-FOLD non-nil means the search was case-insensitive." (isearch-mode forward regexp nil nil word) - (setq isearch-string search + (setq isearch-string string isearch-message message isearch-case-fold-search case-fold) - (isearch-search)) + (isearch-search) + (isearch-update)) ;; arch-tag: 74850515-f7d8-43a6-8a2c-ca90a4c1e675 ;;; isearch.el ends here