From: Lars Magne Ingebrigtsen Date: Sat, 13 Nov 1999 17:01:44 +0000 (+0000) Subject: See ChangeLog for comments X-Git-Url: http://cgit.sxemacs.org/?a=commitdiff_plain;h=61ccea1dbe150dc6e4908b94cfb8c119eb6ca636;p=gnus See ChangeLog for comments --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4eb7b1c66..c6fa86ba6 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,10 @@ +1999-11-13 17:59:18 Lars Magne Ingebrigtsen + + * 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 * 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 * gnus-art.el (gnus-treat-predicate): Work for (not 5). -1999-08-27 Peter von der Ah.AŽé +1999-08-27 Peter von der Ahé * 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 * 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Žé +Tue Jul 20 02:39:56 1999 Peter von der Ahé * 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 * mm-uu.el (mm-uu-dissect): Use mm-make-handle. -1998-12-01 01:53:49 FranŽçois Pinard +1998-12-01 01:53:49 François Pinard * nndoc.el (nndoc-mime-parts-type-p): Do related. @@ -5186,7 +5193,7 @@ Mon Sep 14 18:55:38 1998 Lars Magne Ingebrigtsen * rfc2047.el (rfc2047-q-encode-region): Would bug out. -1998-09-13 FranŽçois Pinard +1998-09-13 François Pinard * nndoc.el: Make nndoc-dissection-alist simpler for MIME, adjust all related functions. Handle message/rfc822 parts. Display subject on diff --git a/lisp/gnus-ems.el b/lisp/gnus-ems.el index 20267c3cf..b44446694 100644 --- a/lisp/gnus-ems.el +++ b/lisp/gnus-ems.el @@ -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 diff --git a/lisp/lpath.el b/lisp/lpath.el index 43b438352..898950f32 100644 --- a/lisp/lpath.el +++ b/lisp/lpath.el @@ -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 diff --git a/lisp/mm-util.el b/lisp/mm-util.el index 9d1bc5f2c..a23a7f69c 100644 --- a/lisp/mm-util.el +++ b/lisp/mm-util.el @@ -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)))