(mime-file-encoding-method-alist): Use
authormorioka <morioka>
Sat, 21 Mar 1998 18:20:44 +0000 (18:20 +0000)
committermorioka <morioka>
Sat, 21 Mar 1998 18:20:44 +0000 (18:20 +0000)
`insert-file-contents-as-binary' instead of
`insert-binary-file-contents'.

mel.el

diff --git a/mel.el b/mel.el
index 528bb0e..27d045c 100644 (file)
--- 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).