From: Richard M. Stallman Date: Thu, 19 Oct 1995 22:23:57 +0000 (+0000) Subject: (isearch-message-prefix): X-Git-Tag: emacs-19.34~2606 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7badea30363cb3c0ee83f83ab1ab53860db61146;p=emacs.git (isearch-message-prefix): Change "wrapped" to "overwrapped" when past original start point. --- diff --git a/lisp/isearch.el b/lisp/isearch.el index 3e74c811170..cd035b08b3e 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el @@ -1312,6 +1312,11 @@ If there is no completion possible, say so and continue searching." ;; If currently failing, display no ellipsis. (or isearch-success (setq ellipsis nil)) (let ((m (concat (if isearch-success "" "failing ") + (if (and isearch-wrapped + (if isearch-forward + (> (point) isearch-opoint) + (< (point) isearch-opoint))) + "over") (if isearch-wrapped "wrapped ") (if isearch-word "word " "") (if isearch-regexp "regexp " "")