(mime-encode-region): Don't regard nil encoding as "7bit".
authormorioka <morioka>
Sun, 20 Sep 1998 04:12:54 +0000 (04:12 +0000)
committermorioka <morioka>
Sun, 20 Sep 1998 04:12:54 +0000 (04:12 +0000)
mel.el

diff --git a/mel.el b/mel.el
index b9d9f76..43b3b65 100644 (file)
--- a/mel.el
+++ b/mel.el
@@ -137,8 +137,7 @@ region by its value."
         (completing-read "encoding: "
                          mel-encoding-module-alist
                          nil t "base64")))
-  (funcall (mel-find-function 'mime-encode-region (or encoding "7bit"))
-          start end)
+  (funcall (mel-find-function 'mime-encode-region encoding) start end)
   )