From c96e1e39b6d15cb54e8a6140e074d8bca6bff9e6 Mon Sep 17 00:00:00 2001 From: Teodor Zlatanov Date: Tue, 20 Sep 2005 17:10:57 +0000 Subject: [PATCH] * gnus-start.el (gnus-activate-group): if the server is nil, don't fail hard * spam-report.el: better Keywords line * spam.el: added Maintainer and better Keywords line --- lisp/ChangeLog | 9 +++++++++ lisp/gnus-start.el | 4 ++-- lisp/spam-report.el | 4 ++-- lisp/spam.el | 3 ++- 4 files changed, 15 insertions(+), 5 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c09406d4e..d911e2fd0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,12 @@ +2005-09-20 Teodor Zlatanov + + * gnus-start.el (gnus-activate-group): if the server is nil, don't + fail hard + + * spam-report.el: better Keywords line + + * spam.el: added Maintainer and better Keywords line + 2005-09-19 Reiner Steib * gnus-art.el (gnus-article-replace-part) diff --git a/lisp/gnus-start.el b/lisp/gnus-start.el index 64d2d43a8..88f33ca01 100644 --- a/lisp/gnus-start.el +++ b/lisp/gnus-start.el @@ -1529,8 +1529,8 @@ If SCAN, request a scan of that group as well." ;; command may have responded with the `(0 . 0)'. We ;; ignore this if we already have an active entry ;; for the group. - (if (and (zerop (car active)) - (zerop (cdr active)) + (if (and (zerop (or (car active) 0)) + (zerop (or (cdr active) 0)) (gnus-active group)) (gnus-active group) diff --git a/lisp/spam-report.el b/lisp/spam-report.el index d8609a14a..7c11b95b7 100644 --- a/lisp/spam-report.el +++ b/lisp/spam-report.el @@ -2,8 +2,8 @@ ;; Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. -;; Author: Teodor Zlatanov -;; Keywords: network +;; Author: Ted Zlatanov +;; Keywords: network, spam, mail, gmane, report ;; This file is part of GNU Emacs. diff --git a/lisp/spam.el b/lisp/spam.el index 8ffb2aa28..fc019da26 100644 --- a/lisp/spam.el +++ b/lisp/spam.el @@ -3,7 +3,8 @@ ;; Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen -;; Keywords: network +;; Maintainer: Ted Zlatanov +;; Keywords: network, spam, mail, bogofilter, BBDB, dspam, dig, whitelist, blacklist, gmane, hashcash, spamassassin, bsfilter, ifile, stat, crm114, spamoracle ;; This file is part of GNU Emacs. -- 2.25.1