From d971a3d7b2b6aa697b3673f23a747132b1fe6f0f Mon Sep 17 00:00:00 2001 From: morioka Date: Wed, 11 Mar 1998 14:23:13 +0000 Subject: [PATCH] (mime-file-encoding-method-alist): Use `insert-binary-file-contents' instead of `insert-binary-file-contents-literally'. --- mel.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mel.el b/mel.el index a209ab7..681be7b 100644 --- a/mel.el +++ b/mel.el @@ -183,9 +183,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-literally) - ("8bit" . insert-binary-file-contents-literally) - ("binary" . insert-binary-file-contents-literally) + ("7bit" . insert-binary-file-contents) + ("8bit" . insert-binary-file-contents) + ("binary" . insert-binary-file-contents) ) "Alist of encoding vs. corresponding method to insert encoded file. Each element looks like (STRING . FUNCTION). -- 1.7.10.4