summaryrefslogtreecommitdiff
path: root/lisp/mail/rmailout.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2020-12-01 07:50:09 -0800
committerGlenn Morris <rgm@gnu.org>2020-12-01 07:50:09 -0800
commit6c6d06c3ee67ae876ade7f4a032da928ffeeb41f (patch)
treeb98bcb001ff8d2156499dea8cfe0443d09c79d9b /lisp/mail/rmailout.el
parent496d1fcd76778b41bccfeeac155121a4a2015274 (diff)
parent9939c435c108b099d3362ecbfa1cba6cc0bbd8f9 (diff)
downloademacs-6c6d06c3ee67ae876ade7f4a032da928ffeeb41f.tar.gz
emacs-6c6d06c3ee67ae876ade7f4a032da928ffeeb41f.tar.bz2
emacs-6c6d06c3ee67ae876ade7f4a032da928ffeeb41f.zip
Merge from origin/emacs-27
9939c435c1 Return the correct suffix in eww-make-unique-file-name 17fa17be3d Save bookmarks by using `write-file' (bug#12507) 2cdf1fd261 Fix filing messages when 'rmail-output-reset-deleted-flag'... a72db8ab8b Make file copying in tramp-gvfs more robust f31cacd1ff Revert "Fix incorrect handling of module runtime and envir... cdc632fbe6 Fix incorrect handling of module runtime and environment p... c9160bda78 CC Mode: Fix error in cache handling. This fixes bug #43481
Diffstat (limited to 'lisp/mail/rmailout.el')
-rw-r--r--lisp/mail/rmailout.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mail/rmailout.el b/lisp/mail/rmailout.el
index 49531eab91e..cfde335b54f 100644
--- a/lisp/mail/rmailout.el
+++ b/lisp/mail/rmailout.el
@@ -579,7 +579,7 @@ from a non-Rmail buffer. In this case, COUNT is ignored."
(progn
(if rmail-delete-after-output
(rmail-delete-message))
- (if (> count 0)
+ (if (>= count 0)
(let ((msgnum rmail-current-message))
(rmail-next-message 1)
(eq rmail-current-message (1+ msgnum)))))