]> git.eshelyaron.com Git - emacs.git/commitdiff
(isearch-message-prefix):
authorRichard M. Stallman <rms@gnu.org>
Thu, 19 Oct 1995 22:23:57 +0000 (22:23 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 19 Oct 1995 22:23:57 +0000 (22:23 +0000)
Change "wrapped" to "overwrapped" when past original start point.

lisp/isearch.el

index 3e74c811170dfb1b152ca6ef384d368a1577d79a..cd035b08b3edc3df8baddcc164febb7f83127281 100644 (file)
@@ -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 " "")