# HG changeset patch # User Richard M. Stallman # Date 814141437 0 # Node ID 7ed0775e99afbbb40dcd5c0df1ff6d0d8cbed968 # Parent a8126303dc0fc9f7eedd3daf0757ac5c27f3beb2 (isearch-message-prefix): Change "wrapped" to "overwrapped" when past original start point. diff -r a8126303dc0f -r 7ed0775e99af lisp/isearch.el --- a/lisp/isearch.el Thu Oct 19 22:04:18 1995 +0000 +++ b/lisp/isearch.el Thu Oct 19 22:23:57 1995 +0000 @@ -1312,6 +1312,11 @@ ;; 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 " "")