From 670afc43593548c1002929914a8f573436db811b Mon Sep 17 00:00:00 2001 From: morioka Date: Sun, 20 Sep 1998 04:12:54 +0000 Subject: [PATCH] (mime-encode-region): Don't regard nil encoding as "7bit". --- mel.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/mel.el b/mel.el index b9d9f76..43b3b65 100644 --- 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) ) -- 1.7.10.4