(rmail-search-backwards): Default count is 1, not -1.

This commit is contained in:
Karl Heuer 1995-06-13 02:17:40 +00:00
parent 240049aafc
commit 68d30f2b1d

View file

@ -1789,7 +1789,7 @@ Interactively, empty argument means use same regexp used last time."
(error "No previous Rmail search string")))
(list rmail-search-last-regexp
(prefix-numeric-value current-prefix-arg))))
(rmail-search regexp (- (or n -1))))
(rmail-search regexp (- (or n 1))))
;; Show the first message which has the `unseen' attribute.
(defun rmail-first-unseen-message ()