]> code.delx.au - gnu-emacs/blobdiff - lisp/gnus/mm-bodies.el
* gnus-art.el (gnus-output-to-file): Bind file-name-coding-system.
[gnu-emacs] / lisp / gnus / mm-bodies.el
index 7b53278edc674e579d31099ae9bc2d6790948113..51a16a6a7f1fdc1919c11d4d7e65e887dfc82758 100644 (file)
@@ -1,4 +1,4 @@
-;;; mm-bodies.el --- Functions for decoding MIME things
+;;; mm-bodies.el --- functions for decoding MIME things
 ;; Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
 
 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
 (eval-and-compile
   (or (fboundp  'base64-decode-region)
       (require 'base64)))
+
 (eval-when-compile
-  (require 'mm-uu))
+  (defvar mm-uu-decode-function)
+  (defvar mm-uu-binhex-decode-function))
 
 (require 'mm-util)
 (require 'rfc2047)
@@ -58,7 +60,7 @@ If there is more than one non-ASCII MULE charset, then list of found
 MULE charsets are returned.
 If successful, the MIME charset is returned.
 If no encoding was done, nil is returned."
-  (if (not (featurep 'mule))
+  (if (not (mm-multibyte-p))
       ;; In the non-Mule case, we search for non-ASCII chars and
       ;; return the value of `mail-parse-charset' if any are found.
       (save-excursion
@@ -262,4 +264,4 @@ The characters in CHARSET should then be decoded."
 
 (provide 'mm-bodies)
 
-;; mm-bodies.el ends here
+;;; mm-bodies.el ends here