]> git.eshelyaron.com Git - emacs.git/commitdiff
(rmail-search-backwards): Default count is 1, not -1.
authorKarl Heuer <kwzh@gnu.org>
Tue, 13 Jun 1995 02:17:40 +0000 (02:17 +0000)
committerKarl Heuer <kwzh@gnu.org>
Tue, 13 Jun 1995 02:17:40 +0000 (02:17 +0000)
lisp/mail/rmail.el

index 96f9e02816c63212810d4fd19715ea330bd8ef61..27ef3a8e7c1ec119104b6231b5179f167c6f8f7b 100644 (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 ()