aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2000-11-01 15:08:23 +0000
committerDave Love2000-11-01 15:08:23 +0000
commite017ba356de2835357b449ec73881ab1c91b39a4 (patch)
treeb054f265d2dac9e490f73fd90392626f3e230b86
parent44d5f5760fb08aacaaa8afea0d6ecc3beab2c3c4 (diff)
downloademacs-e017ba356de2835357b449ec73881ab1c91b39a4.tar.gz
emacs-e017ba356de2835357b449ec73881ab1c91b39a4.zip
2000-11-01 ShengHuo ZHU <zsh@cs.rochester.edu>
* rfc2231.el: Require cl when compiling.
-rw-r--r--lisp/gnus/ChangeLog21
-rw-r--r--lisp/gnus/rfc2231.el2
2 files changed, 23 insertions, 0 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index 860cdb25a4c..209292bc1d4 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,3 +1,24 @@
12000-11-01 ShengHuo ZHU <zsh@cs.rochester.edu>
2
3 * rfc2231.el: Require cl when compiling.
4
52000-11-01 Dave Love <fx@gnu.org>
6
7 * mm-uu.el (mm-uu-decode-function, mm-uu-binhex-decode-function):
8 Fix custom type.
9 (mm-uu-configure-list): Move and fix custom type.
10
11 * utf7.el: Require cl when compiling.
12
13 * binhex.el: Use (featurep 'xemacs).
14 (binhex-char-int): New alias, replacing char-int. Change callers.
15 (binhex-decode-region): Simplify work buffer code.
16 (binhex-decode-region-external): Use expand-file-name, not concat.
17
182000-10-30 Dave Love <fx@gnu.org>
19
20 * gnus-art.el: Fix 2000-10-27 change properly.
21
12000-10-28 Miles Bader <miles@gnu.org> 222000-10-28 Miles Bader <miles@gnu.org>
2 23
3 * gnus-art.el (gnus-read-save-file-name): Remove extraneous paren. 24 * gnus-art.el (gnus-read-save-file-name): Remove extraneous paren.
diff --git a/lisp/gnus/rfc2231.el b/lisp/gnus/rfc2231.el
index 13115e3ca8f..dc487eee415 100644
--- a/lisp/gnus/rfc2231.el
+++ b/lisp/gnus/rfc2231.el
@@ -3,6 +3,7 @@
3;; Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc. 3;; Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
4 4
5;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org> 5;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
6;; Maintainer: bugs@gnus.org
6;; This file is part of GNU Emacs. 7;; This file is part of GNU Emacs.
7 8
8;; GNU Emacs is free software; you can redistribute it and/or modify 9;; GNU Emacs is free software; you can redistribute it and/or modify
@@ -24,6 +25,7 @@
24 25
25;;; Code: 26;;; Code:
26 27
28(eval-when-compile (require 'cl))
27(require 'ietf-drums) 29(require 'ietf-drums)
28 30
29(defun rfc2231-get-value (ct attribute) 31(defun rfc2231-get-value (ct attribute)