aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1997-06-03 08:17:35 +0000
committerRichard M. Stallman <[email protected]>1997-06-03 08:17:35 +0000
commitf808129110222b1303aaca62694fca4f7109b933 (patch)
tree21338808953fdf07221189a1e0d677f65893233f
parent8c39812440d2389b2552b202af08d801122f896a (diff)
(mail-setup): Don't set buffer-file-coding-system to nil.
Instead, kill the local binding of it.
-rw-r--r--lisp/mail/sendmail.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el
index 925b08fc97..54f8dbbcce 100644
--- a/lisp/mail/sendmail.el
+++ b/lisp/mail/sendmail.el
@@ -255,7 +255,7 @@ actually occur.")
(if (file-exists-p mail-personal-alias-file)
(build-mail-aliases))))
;; Don't leave this around from a previous message.
- (setq buffer-file-coding-system nil)
+ (kill-local-variable 'buffer-file-coding-system)
(setq mail-send-actions actions)
(setq mail-reply-action replybuffer)
(goto-char (point-min))