Synch with Oort Gnus.
authoryamaoka <yamaoka>
Tue, 5 Nov 2002 06:42:57 +0000 (06:42 +0000)
committeryamaoka <yamaoka>
Tue, 5 Nov 2002 06:42:57 +0000 (06:42 +0000)
lisp/ChangeLog
lisp/gnus-group.el

index cd00797..d41242f 100644 (file)
@@ -1,3 +1,8 @@
+2002-11-04  Jesper Harder  <harder@ifa.au.dk>
+
+       * gnus-group.el (gnus-group-delete-group):
+       gnus-cache-active-hashtb might be void.
+
 2002-11-02  Simon Josefsson  <jas@extundo.com>
 
        * pgg-gpg.el (pgg-gpg-encrypt-region): Makes PGG respect the
        charset.
 
 2002-10-31  Ted Zlatanov <tzz@lifelogs.com>
-       From Alex Schroeder  <alex@emacswiki.org>
+       From Alex Schroeder <alex@emacswiki.org>
        * spam-stat.el (spam-stat-process-directory): add dir to message
        (spam-stat-reduce-size): No longer remove words
-       with values close to 0.5, because the default value is 0.2.  
+       with values close to 0.5, because the default value is 0.2.
 
 2002-10-31  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@uni-duisburg.de>
 
index 7c1916e..2b6bfb2 100644 (file)
@@ -2247,7 +2247,8 @@ doing the deletion."
          (gnus-group-goto-group group)
          (gnus-group-kill-group 1 t)
          (gnus-sethash group nil gnus-active-hashtb)
-         (when gnus-cache-active-hashtb
+         (when (and (boundp 'gnus-cache-active-hashtb)
+                    gnus-cache-active-hashtb)
            (gnus-sethash group nil gnus-cache-active-hashtb)
            (setq gnus-cache-active-altered t))
          t))