diff options
| author | Teodor Zlatanov | 2011-04-25 04:32:07 +0000 |
|---|---|---|
| committer | Katsumi Yamaoka | 2011-04-25 04:32:07 +0000 |
| commit | e2822bd2ea32c577342b9618a301f8661551f7a3 (patch) | |
| tree | 94b4de3c9812f5c7e330e9e3039bdf83f04b2478 | |
| parent | 8b492194a904d115258ae59eb522c986860c4c18 (diff) | |
| download | emacs-e2822bd2ea32c577342b9618a301f8661551f7a3.tar.gz emacs-e2822bd2ea32c577342b9618a301f8661551f7a3.zip | |
gnus-registry.el (gnus-registry-ignore-group-p): Don't call `gnus-parameter-registry-ignore' if the *Group* buffer doesn't exist.
| -rw-r--r-- | lisp/gnus/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/gnus/gnus-registry.el | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index dd079b4f0a1..99a08de633b 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2011-04-25 Teodor Zlatanov <tzz@lifelogs.com> | ||
| 2 | |||
| 3 | * gnus-registry.el (gnus-registry-ignore-group-p): Don't call | ||
| 4 | `gnus-parameter-registry-ignore' if the *Group* buffer doesn't exist. | ||
| 5 | |||
| 1 | 2011-04-23 Glenn Morris <rgm@gnu.org> | 6 | 2011-04-23 Glenn Morris <rgm@gnu.org> |
| 2 | 7 | ||
| 3 | * gnus-sum.el (gnus-extra-headers): Bump :version. | 8 | * gnus-sum.el (gnus-extra-headers): Bump :version. |
diff --git a/lisp/gnus/gnus-registry.el b/lisp/gnus/gnus-registry.el index 3597cbc1584..e6c96ab2b19 100644 --- a/lisp/gnus/gnus-registry.el +++ b/lisp/gnus/gnus-registry.el | |||
| @@ -678,6 +678,7 @@ Consults `gnus-registry-ignored-groups' and | |||
| 678 | ;; `gnus-registry-ignored-groups' is a list of lists | 678 | ;; `gnus-registry-ignored-groups' is a list of lists |
| 679 | ;; (it can be a list of regexes) | 679 | ;; (it can be a list of regexes) |
| 680 | (and (listp (nth 0 gnus-registry-ignored-groups)) | 680 | (and (listp (nth 0 gnus-registry-ignored-groups)) |
| 681 | (get-buffer "*Group*") ; in automatic tests this is false | ||
| 681 | (gnus-parameter-registry-ignore group)) | 682 | (gnus-parameter-registry-ignore group)) |
| 682 | (gnus-grep-in-list | 683 | (gnus-grep-in-list |
| 683 | group | 684 | group |