diff options
author | Karl Heuer <kwzh@gnu.org> | 1995-06-13 02:17:40 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1995-06-13 02:17:40 +0000 |
commit | 68d30f2b1dde2746e895da29d7ff0cc0ed1183d1 (patch) | |
tree | f16c1a5887274e9c050efdafca3f81e6bc2c5f59 | |
parent | 240049aafcd3d21d15ab875cb08b0d6f07118363 (diff) | |
download | emacs-68d30f2b1dde2746e895da29d7ff0cc0ed1183d1.tar.gz |
(rmail-search-backwards): Default count is 1, not -1.
-rw-r--r-- | lisp/mail/rmail.el | 2 |
1 files changed, 1 insertions, 1 deletions
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 () |