diff options
Diffstat (limited to 'lisp/mail')
| -rw-r--r-- | lisp/mail/rmail.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index 34f8a46761b..0b5f564abf4 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el | |||
| @@ -3547,8 +3547,10 @@ If `rmail-confirm-expunge' is non-nil, ask user to confirm." | |||
| 3547 | (and (stringp rmail-deleted-vector) | 3547 | (and (stringp rmail-deleted-vector) |
| 3548 | (string-match "D" rmail-deleted-vector) | 3548 | (string-match "D" rmail-deleted-vector) |
| 3549 | (if rmail-confirm-expunge | 3549 | (if rmail-confirm-expunge |
| 3550 | (funcall rmail-confirm-expunge | 3550 | (and (funcall rmail-confirm-expunge |
| 3551 | "Erase deleted messages from Rmail file? ") | 3551 | "Erase deleted messages from Rmail file? ") |
| 3552 | ;; In case r-c-e's function returns non-nil, non-t | ||
| 3553 | t) | ||
| 3552 | t))) | 3554 | t))) |
| 3553 | 3555 | ||
| 3554 | (defun rmail-only-expunge (&optional dont-show) | 3556 | (defun rmail-only-expunge (&optional dont-show) |