]> git.eshelyaron.com Git - emacs.git/commitdiff
* gnus-group.el (gnus-group-make-useful-group): Don't use the compiler
authorKatsumi Yamaoka <yamaoka@jpl.org>
Wed, 10 Sep 2008 01:28:52 +0000 (01:28 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Wed, 10 Sep 2008 01:28:52 +0000 (01:28 +0000)
macro caddr in the interactive form since it won't be expanded.

lisp/gnus/ChangeLog
lisp/gnus/gnus-group.el

index fa7d7926a38841494f3f2d590a50c8bd379fdfb9..1f7a462fb9210c2292c868a80f487b2a25db7916 100644 (file)
@@ -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
index 947ed6d0fabcb2336932d646bbe64f3c877218ea..c218f257a8e5c3fadac50af0b575551049f961e5 100644 (file)
@@ -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))