aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2008-06-25 15:01:47 +0000
committerStefan Monnier2008-06-25 15:01:47 +0000
commit32bed934f91f074c2adab249461b0039b90589a3 (patch)
tree2f0949dc5df3e291354a4fd20f398fa7830d5c27
parent69587bba2174428bc25eda9675558aadede61674 (diff)
downloademacs-32bed934f91f074c2adab249461b0039b90589a3.tar.gz
emacs-32bed934f91f074c2adab249461b0039b90589a3.zip
Require CL.
-rw-r--r--lisp/gnus/ChangeLog16
-rw-r--r--lisp/gnus/nnmairix.el2
2 files changed, 12 insertions, 6 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index 0ee4dd87518..5da9aee70f4 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,19 +1,23 @@
12008-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * nnmairix.el: Require CL.
4
12008-06-15 David Engster <dengste@eml.cc> 52008-06-15 David Engster <dengste@eml.cc>
2 6
3 * nnimap.el (nnimap-request-delete-group): Unselect group if necessary. 7 * nnimap.el (nnimap-request-delete-group): Unselect group if necessary.
4 8
52008-06-14 Aidan Kehoe <kehoea@parhasard.net> 92008-06-14 Aidan Kehoe <kehoea@parhasard.net>
6 10
7 * gnus-util.el (gnus-put-display-table, gnus-get-display-table): New 11 * gnus-util.el (gnus-put-display-table, gnus-get-display-table):
8 macros that expand to an `aset'/`aref' call under Emacs, and to a 12 New macros that expand to an `aset'/`aref' call under Emacs, and to a
9 runtime choice under XEmacs. 13 runtime choice under XEmacs.
10 14
11 * gnus-sum.el (gnus-summary-set-display-table): Use 15 * gnus-sum.el (gnus-summary-set-display-table):
12 `gnus-put-display-table', `gnus-get-display-table', 16 Use `gnus-put-display-table', `gnus-get-display-table',
13 `gnus-set-display-table' for the display table, instead of `aset'. 17 `gnus-set-display-table' for the display table, instead of `aset'.
14 18
15 * gnus-xmas.el (gnus-xmas-summary-set-display-table): Use 19 * gnus-xmas.el (gnus-xmas-summary-set-display-table):
16 `gnus-put-display-table', `gnus-get-display-table', 20 Use `gnus-put-display-table', `gnus-get-display-table',
17 `gnus-set-display-table' for the display table. 21 `gnus-set-display-table' for the display table.
18 22
192008-06-14 Reiner Steib <Reiner.Steib@gmx.de> 232008-06-14 Reiner Steib <Reiner.Steib@gmx.de>
diff --git a/lisp/gnus/nnmairix.el b/lisp/gnus/nnmairix.el
index dbc0a55e1f2..6917b7739db 100644
--- a/lisp/gnus/nnmairix.el
+++ b/lisp/gnus/nnmairix.el
@@ -163,6 +163,8 @@
163 163
164;;; Code: 164;;; Code:
165 165
166(eval-when-compile (require 'cl)) ;For (pop (cdr ogroup)).
167
166(require 'nnoo) 168(require 'nnoo)
167(require 'gnus-group) 169(require 'gnus-group)
168(require 'gnus-sum) 170(require 'gnus-sum)