From 68d30f2b1dde2746e895da29d7ff0cc0ed1183d1 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Tue, 13 Jun 1995 02:17:40 +0000 Subject: [PATCH] (rmail-search-backwards): Default count is 1, not -1. --- lisp/mail/rmail.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index 96f9e02816c..27ef3a8e7c1 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el @@ -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 () -- 2.39.2