# HG changeset patch # User Richard M. Stallman # Date 865325855 0 # Node ID 000b0a8baf1a230447b883b58a10a3f1aa49fe44 # Parent 2441b667abdde6e0b045f79d2dfb226838eb8fa4 (mail-setup): Don't set buffer-file-coding-system to nil. Instead, kill the local binding of it. diff -r 2441b667abdd -r 000b0a8baf1a lisp/mail/sendmail.el --- a/lisp/mail/sendmail.el Tue Jun 03 07:30:57 1997 +0000 +++ b/lisp/mail/sendmail.el Tue Jun 03 08:17:35 1997 +0000 @@ -255,7 +255,7 @@ (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))