From: morioka Date: Wed, 11 Mar 1998 14:23:13 +0000 (+0000) Subject: (mime-file-encoding-method-alist): Use `insert-binary-file-contents' X-Git-Tag: mel-7_2~13 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=d971a3d7b2b6aa697b3673f23a747132b1fe6f0f;p=elisp%2Fflim.git (mime-file-encoding-method-alist): Use `insert-binary-file-contents' instead of `insert-binary-file-contents-literally'. --- 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).