(mime-edit-decode-message-in-buffer): Renamed from
authormorioka <morioka>
Sat, 31 Oct 1998 15:48:47 +0000 (15:48 +0000)
committermorioka <morioka>
Sat, 31 Oct 1998 15:48:47 +0000 (15:48 +0000)
`mime-edit-decode-buffer'; change `not-decode-text' to optional
argument.

mime-edit.el

index 3c38997..1092725 100644 (file)
@@ -2577,7 +2577,7 @@ Content-Type: message/partial; id=%s; number=%d; total=%d\n%s\n"
          "\\):")
   "Regexp for deleted header fields when `mime-edit-again' is called.")
 
-(defun mime-edit-decode-buffer (not-decode-text)
+(defun mime-edit-decode-message-in-buffer (&optional not-decode-text)
   (save-excursion
     (goto-char (point-min))
     (let ((ctl (mime-read-Content-Type)))
@@ -2619,7 +2619,7 @@ Content-Type: message/partial; id=%s; number=%d; total=%d\n%s\n"
                            )
                          (save-restriction
                            (narrow-to-region beg end)
-                           (mime-edit-decode-buffer not-decode-text)
+                           (mime-edit-decode-message-in-buffer not-decode-text)
                            (goto-char (point-max))
                            ))))
                    ))
@@ -2730,7 +2730,7 @@ converted to MIME-Edit tags."
        nil t)
       (replace-match "\n\n")
     )
-  (mime-edit-decode-buffer not-decode-text)
+  (mime-edit-decode-message-in-buffer not-decode-text)
   (goto-char (point-min))
   (save-restriction
     (std11-narrow-to-header)