See ChangeLog for comments
authorLars Magne Ingebrigtsen <larsi@gnus.org>
Sat, 13 Nov 1999 17:01:44 +0000 (17:01 +0000)
committerLars Magne Ingebrigtsen <larsi@gnus.org>
Sat, 13 Nov 1999 17:01:44 +0000 (17:01 +0000)
lisp/ChangeLog
lisp/gnus-ems.el
lisp/lpath.el
lisp/mm-util.el

index 4eb7b1c..c6fa86b 100644 (file)
@@ -1,3 +1,10 @@
+1999-11-13 17:59:18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * mm-util.el (mm-find-mime-charset-region): Make sure
+       find-coding-systems-for-charsets is fbound.
+
+       * gnus-ems.el: Typo fix.
+
 1999-11-13  Florian Weimer  <fw@s.netic.de>
 
        * mm-util.el (mm-find-mime-charset-region): Use UTF-8 if 
@@ -686,7 +693,7 @@ Mon Sep 27 15:18:05 1999  Lars Magne Ingebrigtsen  <larsi@menja.ifi.uio.no>
 
        * gnus-art.el (gnus-treat-predicate): Work for (not 5).
 
-1999-08-27  Peter von der Ah\e.A\8eé  <pahe@daimi.au.dk>
+1999-08-27  Peter von der Ahé  <pahe@daimi.au.dk>
 
        * message.el (message-send): More helpful error message if sending
        fails
@@ -888,7 +895,7 @@ Fri Aug 27 13:17:48 1999  Lars Magne Ingebrigtsen  <larsi@menja.ifi.uio.no>
        * gnus-agent.el (gnus-agent-get-undownloaded-list): Don't
        mark cached articles as `undownloaded'.
 
-Tue Jul 20 02:39:56 1999  Peter von der Ah\8eé  <peter@ahe.dk>
+Tue Jul 20 02:39:56 1999  Peter von der Ahé  <peter@ahe.dk>
 
        * gnus-sum.el (gnus-summary-exit): Allow gnus-use-adaptive-scoring
        to have buffer local values.
@@ -3440,7 +3447,7 @@ Mon Nov 30 23:38:02 1998  Shenghuo ZHU  <zsh@cs.rochester.edu>
 
        * mm-uu.el (mm-uu-dissect): Use mm-make-handle.
 
-1998-12-01 01:53:49  Fran\8eçois Pinard  <pinard@iro.umontreal.ca>
+1998-12-01 01:53:49  François Pinard  <pinard@iro.umontreal.ca>
 
        * nndoc.el (nndoc-mime-parts-type-p): Do related.
 
@@ -5186,7 +5193,7 @@ Mon Sep 14 18:55:38 1998  Lars Magne Ingebrigtsen  <larsi@menja.ifi.uio.no>
 
        * rfc2047.el (rfc2047-q-encode-region): Would bug out.
 
-1998-09-13  Fran\8eçois Pinard  <pinard@iro.umontreal.ca>
+1998-09-13  François Pinard  <pinard@iro.umontreal.ca>
 
        * nndoc.el: Make nndoc-dissection-alist simpler for MIME, adjust all
           related functions.  Handle message/rfc822 parts.  Display subject on
index 20267c3..b444466 100644 (file)
@@ -1,4 +1,4 @@
-cccc;;; gnus-ems.el --- functions for making Gnus work under different Emacsen
+;;; gnus-ems.el --- functions for making Gnus work under different Emacsen
 ;; Copyright (C) 1995,96,97,98,99 Free Software Foundation, Inc.
 
 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
index 43b4383..898950f 100644 (file)
@@ -41,6 +41,7 @@
                     rmail-summary-exists rmail-select-summary
                     rmail-update-summary url-retrieve
                     temp-directory babel-fetch babel-wash
+                    find-coding-systems-for-charsets
                     ))
       (maybe-bind '(global-face-data
                    mark-active transient-mark-mode mouse-selection-click-count
index 9d1bc5f..a23a7f6 100644 (file)
@@ -233,6 +233,7 @@ used as the line break code type of the coding system."
       (setq charsets (delq 'iso-2022-jp charsets)))
     (delete-duplicates charsets)
     (if (and (> (length charsets) 1)
+            (fboundp 'find-coding-systems-for-charsets)
             (memq 'utf-8 (find-coding-systems-for-charsets charsets)))
        '(utf-8)
       charsets)))