1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-30 19:53:09 +00:00

Require CL.

This commit is contained in:
Stefan Monnier 2008-06-25 15:01:47 +00:00
parent 69587bba21
commit 32bed934f9
2 changed files with 12 additions and 6 deletions

View File

@ -1,19 +1,23 @@
2008-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
* nnmairix.el: Require CL.
2008-06-15 David Engster <dengste@eml.cc>
* nnimap.el (nnimap-request-delete-group): Unselect group if necessary.
2008-06-14 Aidan Kehoe <kehoea@parhasard.net>
* gnus-util.el (gnus-put-display-table, gnus-get-display-table): New
macros that expand to an `aset'/`aref' call under Emacs, and to a
* gnus-util.el (gnus-put-display-table, gnus-get-display-table):
New macros that expand to an `aset'/`aref' call under Emacs, and to a
runtime choice under XEmacs.
* gnus-sum.el (gnus-summary-set-display-table): Use
`gnus-put-display-table', `gnus-get-display-table',
* gnus-sum.el (gnus-summary-set-display-table):
Use `gnus-put-display-table', `gnus-get-display-table',
`gnus-set-display-table' for the display table, instead of `aset'.
* gnus-xmas.el (gnus-xmas-summary-set-display-table): Use
`gnus-put-display-table', `gnus-get-display-table',
* gnus-xmas.el (gnus-xmas-summary-set-display-table):
Use `gnus-put-display-table', `gnus-get-display-table',
`gnus-set-display-table' for the display table.
2008-06-14 Reiner Steib <Reiner.Steib@gmx.de>

View File

@ -163,6 +163,8 @@
;;; Code:
(eval-when-compile (require 'cl)) ;For (pop (cdr ogroup)).
(require 'nnoo)
(require 'gnus-group)
(require 'gnus-sum)