From 545abdc395d66e7b41c39adee0684bc0ca9ee58f Mon Sep 17 00:00:00 2001 From: morioka Date: Sat, 21 Mar 1998 18:20:44 +0000 Subject: [PATCH] (mime-file-encoding-method-alist): Use `insert-file-contents-as-binary' instead of `insert-binary-file-contents'. --- mel.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mel.el b/mel.el index 528bb0e..27d045c 100644 --- a/mel.el +++ b/mel.el @@ -199,9 +199,9 @@ region by its value." ;; Not standard, their use is DISCOURAGED. ;; ("x-uue" . uuencode-insert-encoded-file) ;; ("x-gzip64" . gzip64-insert-encoded-file) - ("7bit" . insert-binary-file-contents) - ("8bit" . insert-binary-file-contents) - ("binary" . insert-binary-file-contents) + ("7bit" . insert-file-contents-as-binary) + ("8bit" . insert-file-contents-as-binary) + ("binary" . insert-file-contents-as-binary) ) "Alist of encoding vs. corresponding method to insert encoded file. Each element looks like (STRING . FUNCTION). -- 1.7.10.4