# HG changeset patch # User Katsumi Yamaoka # Date 1221010132 0 # Node ID a5e4178beceefc9efc54242867ee462a87ed1780 # Parent 95e740c93248fc6040163c50801c311309651cb9 * 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. diff -r 95e740c93248 -r a5e4178becee lisp/gnus/ChangeLog --- a/lisp/gnus/ChangeLog Tue Sep 09 22:48:45 2008 +0000 +++ b/lisp/gnus/ChangeLog Wed Sep 10 01:28:52 2008 +0000 @@ -1,3 +1,8 @@ +2008-09-10 Katsumi Yamaoka + + * 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 * gnus-art.el (gnus-mime-set-charset-parameters): Add new argument diff -r 95e740c93248 -r a5e4178becee lisp/gnus/gnus-group.el --- a/lisp/gnus/gnus-group.el Tue Sep 09 22:48:45 2008 +0000 +++ b/lisp/gnus/gnus-group.el Wed Sep 10 01:28:52 2008 +0000 @@ -2925,7 +2925,10 @@ (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))