diff options
author | Dave Love <fx@gnu.org> | 2000-11-09 14:23:43 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2000-11-09 14:23:43 +0000 |
commit | def5ff3657fa5860d8ac6f4c616b38a0b5785a8e (patch) | |
tree | c4a23cd015c16222807ab22d043ad6f2fd9921fd /lisp/gnus/mm-bodies.el | |
parent | 6e077b52fdd4024de42433db2e268033c85d8d56 (diff) | |
download | emacs-def5ff3657fa5860d8ac6f4c616b38a0b5785a8e.tar.gz |
(mm-encode-body): Use mm-multibyte-p, don't just
test for Mule.
Diffstat (limited to 'lisp/gnus/mm-bodies.el')
-rw-r--r-- | lisp/gnus/mm-bodies.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gnus/mm-bodies.el b/lisp/gnus/mm-bodies.el index bd72accceaa..eb0483ae35f 100644 --- a/lisp/gnus/mm-bodies.el +++ b/lisp/gnus/mm-bodies.el @@ -60,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 |