diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2021-05-12 14:15:36 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2021-05-12 16:17:55 +0200 |
commit | df2a23777539b29ebbd3288e756ace56f7df0d8d (patch) | |
tree | 3b77ce544698fcf7355fa1bd3e5105faff220d09 /lisp/mail | |
parent | 98e5639c3c3caf2424f35e4a9f9c53ff48f43897 (diff) | |
download | emacs-df2a23777539b29ebbd3288e756ace56f7df0d8d.tar.gz emacs-df2a23777539b29ebbd3288e756ace56f7df0d8d.tar.bz2 emacs-df2a23777539b29ebbd3288e756ace56f7df0d8d.zip |
Remove unused variable in rmail.el
* lisp/mail/rmail.el (rmail-reply): Remove unused lexical variable
introduced in previous patch.
Diffstat (limited to 'lisp/mail')
-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 f60581a11c6..06bb3bd013e 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el @@ -3767,7 +3767,7 @@ use \\[mail-yank-original] to yank the original message into it." (rmail-apply-in-message rmail-current-message (lambda () - (let ((beg (point-min)) (end (point-max)) + (let ((end (point-max)) subheader) ;; Find the message's real header. (search-forward "\n\n" nil 'move) |