diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2017-02-15 07:47:27 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2017-02-15 07:48:30 -0800 |
commit | e6041a05a0ab51c5d600459e4aca67837070a96a (patch) | |
tree | 80763676ec4ea117658daf6a7d0970bf8320e1ae /lisp/mail | |
parent | 971f4fabfacfce02b5bb7f4c2b9ede6a127a46bd (diff) | |
download | emacs-e6041a05a0ab51c5d600459e4aca67837070a96a.tar.gz |
Fixup recent rmail patch
* lisp/mail/rmail.el (rmail-epa-decrypt): Remove unused local.
Diffstat (limited to 'lisp/mail')
-rw-r--r-- | lisp/mail/rmail.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index 55543f251d6..aeaba5862fc 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el @@ -4634,8 +4634,7 @@ Argument MIME is non-nil if this is a mime message." (when (y-or-n-p "Replace the original message? ") (setq decrypts (nreverse decrypts)) (let ((beg (rmail-msgbeg rmail-current-message)) - (end (rmail-msgend rmail-current-message)) - (from-buffer (current-buffer))) + (end (rmail-msgend rmail-current-message))) (with-current-buffer rmail-view-buffer (narrow-to-region beg end) (goto-char (point-min)) |