From 261cb72638f416d8ab2b52da53355abad648101f Mon Sep 17 00:00:00 2001 From: morioka Date: Fri, 16 Oct 1998 12:49:20 +0000 Subject: [PATCH] (mime-edit-decode-buffer): Call `mule-caesar-region' for text/x-rot13-47-48 entity. --- mime-edit.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mime-edit.el b/mime-edit.el index eab91e7..ff83978 100644 --- a/mime-edit.el +++ b/mime-edit.el @@ -2689,6 +2689,10 @@ Content-Type: message/partial; id=%s; number=%d; total=%d\n%s\n" (match-end 0) (point-min) ))) + (if (and (eq type 'text) + (eq stype 'x-rot13-47-48)) + (mule-caesar-region he (point-max)) + ) (if (= (point-min) 1) (progn (goto-char he) -- 1.7.10.4