* gnus-group.el (gnus-group-make-useful-group): Don't use the compiler
macro caddr in the interactive form since it won't be expanded.
This commit is contained in:
parent
c0ccb0d665
commit
1ae03cd5dd
2 changed files with 9 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2008-09-10 Katsumi Yamaoka <yamaoka@jpl.org>
|
||||
|
||||
* gnus-group.el (gnus-group-make-useful-group): Don't use the compiler
|
||||
macro caddr in the interactive form since it won't be expanded.
|
||||
|
||||
2008-09-09 Katsumi Yamaoka <yamaoka@jpl.org>
|
||||
|
||||
* gnus-art.el (gnus-mime-set-charset-parameters): Add new argument
|
||||
|
|
|
|||
|
|
@ -2925,7 +2925,10 @@ and NEW-NAME will be prompted for."
|
|||
(let ((entry (assoc (completing-read "Create group: " gnus-useful-groups
|
||||
nil t)
|
||||
gnus-useful-groups)))
|
||||
(list (cadr entry) (caddr entry))))
|
||||
(list (cadr entry)
|
||||
;; Don't use `caddr' here since macros within the `interactive'
|
||||
;; form won't be expanded.
|
||||
(car (cddr entry)))))
|
||||
(setq method (gnus-copy-sequence method))
|
||||
(let (entry)
|
||||
(while (setq entry (memq (assq 'eval method) method))
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue