diff options
| author | Katsumi Yamaoka | 2008-09-10 01:28:52 +0000 |
|---|---|---|
| committer | Katsumi Yamaoka | 2008-09-10 01:28:52 +0000 |
| commit | 1ae03cd5dd984877f8282e67d0f345413219b7f3 (patch) | |
| tree | 9ad9fc0b6cc322b4bf02fe2249153aebd01a3778 | |
| parent | c0ccb0d665e74d401e057f501962e6a017d84469 (diff) | |
| download | emacs-1ae03cd5dd984877f8282e67d0f345413219b7f3.tar.gz emacs-1ae03cd5dd984877f8282e67d0f345413219b7f3.zip | |
* 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.
| -rw-r--r-- | lisp/gnus/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/gnus/gnus-group.el | 5 |
2 files changed, 9 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index fa7d7926a38..1f7a462fb92 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2008-09-10 Katsumi Yamaoka <yamaoka@jpl.org> | ||
| 2 | |||
| 3 | * gnus-group.el (gnus-group-make-useful-group): Don't use the compiler | ||
| 4 | macro caddr in the interactive form since it won't be expanded. | ||
| 5 | |||
| 1 | 2008-09-09 Katsumi Yamaoka <yamaoka@jpl.org> | 6 | 2008-09-09 Katsumi Yamaoka <yamaoka@jpl.org> |
| 2 | 7 | ||
| 3 | * gnus-art.el (gnus-mime-set-charset-parameters): Add new argument | 8 | * gnus-art.el (gnus-mime-set-charset-parameters): Add new argument |
diff --git a/lisp/gnus/gnus-group.el b/lisp/gnus/gnus-group.el index 947ed6d0fab..c218f257a8e 100644 --- a/lisp/gnus/gnus-group.el +++ b/lisp/gnus/gnus-group.el | |||
| @@ -2925,7 +2925,10 @@ and NEW-NAME will be prompted for." | |||
| 2925 | (let ((entry (assoc (completing-read "Create group: " gnus-useful-groups | 2925 | (let ((entry (assoc (completing-read "Create group: " gnus-useful-groups |
| 2926 | nil t) | 2926 | nil t) |
| 2927 | gnus-useful-groups))) | 2927 | gnus-useful-groups))) |
| 2928 | (list (cadr entry) (caddr entry)))) | 2928 | (list (cadr entry) |
| 2929 | ;; Don't use `caddr' here since macros within the `interactive' | ||
| 2930 | ;; form won't be expanded. | ||
| 2931 | (car (cddr entry))))) | ||
| 2929 | (setq method (gnus-copy-sequence method)) | 2932 | (setq method (gnus-copy-sequence method)) |
| 2930 | (let (entry) | 2933 | (let (entry) |
| 2931 | (while (setq entry (memq (assq 'eval method) method)) | 2934 | (while (setq entry (memq (assq 'eval method) method)) |