diff options
| author | Richard M. Stallman | 1997-06-03 08:17:35 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-06-03 08:17:35 +0000 |
| commit | f808129110222b1303aaca62694fca4f7109b933 (patch) | |
| tree | 21338808953fdf07221189a1e0d677f65893233f | |
| parent | 8c39812440d2389b2552b202af08d801122f896a (diff) | |
| download | emacs-f808129110222b1303aaca62694fca4f7109b933.tar.gz emacs-f808129110222b1303aaca62694fca4f7109b933.zip | |
(mail-setup): Don't set buffer-file-coding-system to nil.
Instead, kill the local binding of it.
| -rw-r--r-- | lisp/mail/sendmail.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el index 925b08fc97d..54f8dbbcce6 100644 --- a/lisp/mail/sendmail.el +++ b/lisp/mail/sendmail.el | |||
| @@ -255,7 +255,7 @@ actually occur.") | |||
| 255 | (if (file-exists-p mail-personal-alias-file) | 255 | (if (file-exists-p mail-personal-alias-file) |
| 256 | (build-mail-aliases)))) | 256 | (build-mail-aliases)))) |
| 257 | ;; Don't leave this around from a previous message. | 257 | ;; Don't leave this around from a previous message. |
| 258 | (setq buffer-file-coding-system nil) | 258 | (kill-local-variable 'buffer-file-coding-system) |
| 259 | (setq mail-send-actions actions) | 259 | (setq mail-send-actions actions) |
| 260 | (setq mail-reply-action replybuffer) | 260 | (setq mail-reply-action replybuffer) |
| 261 | (goto-char (point-min)) | 261 | (goto-char (point-min)) |