(mime-file-encoding-method-alist): Use `insert-binary-file-contents'
authormorioka <morioka>
Wed, 11 Mar 1998 14:23:13 +0000 (14:23 +0000)
committermorioka <morioka>
Wed, 11 Mar 1998 14:23:13 +0000 (14:23 +0000)
instead of `insert-binary-file-contents-literally'.

mel.el

diff --git a/mel.el b/mel.el
index a209ab7..681be7b 100644 (file)
--- 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).