aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1996-06-04 15:31:01 +0000
committerRichard M. Stallman <[email protected]>1996-06-04 15:31:01 +0000
commit65b4665c1f5c26c63d19492ed48f1242280726cc (patch)
tree6d217022afc7f41221e2ba2c2b5d10942d23d211
parentda6a48c9d1a9ef3d470cbceb6809d971ecac1726 (diff)
(occur): Avoid "1 lines" in echo area.
-rw-r--r--lisp/replace.el12
1 files changed, 7 insertions, 5 deletions
diff --git a/lisp/replace.el b/lisp/replace.el
index 747adbe27e..90c66fa47c 100644
--- a/lisp/replace.el
+++ b/lisp/replace.el
@@ -448,11 +448,13 @@ It serves as a menu to find any of the occurrences in this buffer.
;; Put positions in increasing order to go with buffer.
(setq occur-pos-list (nreverse occur-pos-list))
(goto-char (point-min))
- (if (= (length occur-pos-list) 1)
- (insert "1 line")
- (insert (format "%d lines" (length occur-pos-list))))
- (if (interactive-p)
- (message "%d matching lines." (length occur-pos-list)))))))))
+ (let ((message-string
+ (if (= (length occur-pos-list) 1)
+ "1 line"
+ (format "%d lines" (length occur-pos-list)))))
+ (insert message-string)
+ (if (interactive-p)
+ (message "%s matched" message-string)))))))))
;; It would be nice to use \\[...], but there is no reasonable way
;; to make that display both SPC and Y.