Synch to Oort Gnus 200304300156.
authoryamaoka <yamaoka>
Wed, 30 Apr 2003 01:55:39 +0000 (01:55 +0000)
committeryamaoka <yamaoka>
Wed, 30 Apr 2003 01:55:39 +0000 (01:55 +0000)
* lpath.el: Bind `default-mime-charset-unlimited'.

ChangeLog
lisp/ChangeLog
lisp/lpath.el
lisp/mm-util.el

index e873a32..754f05f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2003-04-30  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * lisp/lpath.el: Bind `default-mime-charset-unlimited'.
+
 2003-04-29  Katsumi Yamaoka  <yamaoka@jpl.org>
 
        * lisp/dgnushack.el: Autoload font-lock and nnheader for XEmacs
index 44ee798..ed5c282 100644 (file)
@@ -1,3 +1,8 @@
+2003-04-30  Simon Josefsson  <jas@extundo.com>
+
+       * mm-util.el (mm-charset-to-coding-system): Use user specified
+       charset unless coding-system-get is fboundp.
+
 2003-04-30  Kevin Greiner <kgreiner@xpediantsolutions.com>
 
        * gnus-agent.el (gnus-agent-cat-defaccessor, gnus-agent-cat-name):
index 3171f5f..e9e1613 100644 (file)
        (t
         nil)))
       (common-vars
-       '(navi2ch-mona-font)))
+       '(default-mime-charset-unlimited navi2ch-mona-font)))
   (maybe-fbind functions)
   (maybe-fbind common-fns)
   (maybe-bind variables)
index 85dc2b3..08d9284 100644 (file)
@@ -344,7 +344,8 @@ used as the line break code type of the coding system."
    ((null charset)
     charset)
    ;; Running in a non-MULE environment.
-   ((null (mm-get-coding-system-list))
+   ((or (null (mm-get-coding-system-list))
+       (not (fboundp 'coding-system-get)))
     charset)
    ;; ascii
    ((eq charset 'us-ascii)