mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-19 18:13:55 +00:00
(rmail-only-expunge): Fix paren error.
Unconditionally try to leave point at the same old place.
This commit is contained in:
parent
de2f4698fe
commit
c32e5fb00d
@ -3316,10 +3316,10 @@ See also user-option `rmail-confirm-expunge'."
|
||||
(narrow-to-region (- (buffer-size) omin) (- (buffer-size) omax)))
|
||||
(if (not dont-show)
|
||||
(rmail-show-message
|
||||
(if (zerop rmail-current-message) 1 nil)
|
||||
(if rmail-enable-mime
|
||||
(goto-char (+ (point-min) opoint))
|
||||
(goto-char (+ (point) opoint))))))))
|
||||
(if (zerop rmail-current-message) 1 nil)))
|
||||
(if rmail-enable-mime
|
||||
(goto-char (+ (point-min) opoint))
|
||||
(goto-char (+ (point) opoint))))))
|
||||
|
||||
(defun rmail-expunge ()
|
||||
"Erase deleted messages from Rmail file and summary buffer."
|
||||
|
Loading…
Reference in New Issue
Block a user