*** empty log message ***
authorLars Magne Ingebrigtsen <larsi@gnus.org>
Tue, 4 Mar 1997 19:49:19 +0000 (19:49 +0000)
committerLars Magne Ingebrigtsen <larsi@gnus.org>
Tue, 4 Mar 1997 19:49:19 +0000 (19:49 +0000)
lisp/ChangeLog
lisp/custom.el
lisp/gnus-xmas.el
lisp/gnus.el

index 3e340ab..7d5888e 100644 (file)
@@ -1,3 +1,23 @@
+Sat Jun 22 11:16:57 1996  Lars Magne Ingebrigtsen  <larsi@ifi.uio.no>
+
+       * gnus.el (gnus-adjust-marked-articles): Would bug out on some
+       bookmarks. 
+
+Sat Jun 22 11:13:51 1996  Raja R. Harinath  <harinath@cs.umn.edu>
+
+       * gnus.el (gnus-summary-save-body-in-file): Saved wrong buffer.
+
+Sat Jun 22 10:57:35 1996  Lars Magne Ingebrigtsen  <larsi@ifi.uio.no>
+
+       * gnus.el (gnus-thread-total-score-1): Replaced with old,
+       non-buggy version.
+
+       * gnus-xmas.el ((find-face 'gnus-x-face)): Set proper colors. 
+
+Fri Jun 21 18:04:03 1996  Lars Magne Ingebrigtsen  <larsi@ifi.uio.no>
+
+       * gnus.el: Gnus v5.2.24 is released.
+
 Fri Jun 21 16:36:03 1996  Christoph Wedler  <wedler@fmi.uni-passau.de>
 
        * gnus-picon.el (gnus-picons-insert-face-if-exists): Total change.
index 981c34e..910ef02 100644 (file)
@@ -260,9 +260,10 @@ into the buffer visible in the event's window."
 
 ;; Put it in the Help menu, if possible.
 (if (string-match "XEmacs" emacs-version)
-    ;; XEmacs (disabled because it doesn't work)
-    (and current-menubar
-        (add-menu-item '("Help") "Customize..." 'customize t))
+    (if (featurep 'menubar)
+       ;; XEmacs (disabled because it doesn't work)
+       (and current-menubar
+            (add-menu-item '("Help") "Customize..." 'customize t)))
   ;; Emacs 19.28 and earlier
   (global-set-key [ menu-bar help customize ]
                  '("Customize..." . customize))
index 93256e9..a1ad027 100644 (file)
@@ -703,7 +703,9 @@ XEmacs compatibility workaround."
    args))
 
 (unless (find-face 'gnus-x-face)
-  (copy-face 'default 'gnus-x-face))
+  (copy-face 'default 'gnus-x-face)
+  (set-face-foreground 'gnus-x-face "black")
+  (set-face-background 'gnus-x-face "white"))
 
 (defun gnus-xmas-article-display-xface (beg end)
   "Display any XFace headers in the current article."
index 31c5e1c..2d0e98e 100644 (file)
@@ -1730,7 +1730,7 @@ variable (string, integer, character, etc).")
   "gnus-bug@ifi.uio.no (The Gnus Bugfixing Girls + Boys)"
   "The mail address of the Gnus maintainers.")
 
-(defconst gnus-version-number "5.2.24"
+(defconst gnus-version-number "5.2.25"
   "Version number for this version of Gnus.")
 
 (defconst gnus-version (format "Gnus v%s" gnus-version-number)
@@ -8423,23 +8423,14 @@ Unscored articles will be counted as having a score of zero."
         (gnus-thread-total-score-1 (list thread)))))
 
 (defun gnus-thread-total-score-1 (root)
-  ;; This function finds the total score of the thread below ROOT.
+  ;; This function find the total score of the thread below ROOT.
   (setq root (car root))
-  (let ((number (mail-header-number root)))
-    (if (and (not (memq number gnus-newsgroup-limit))
-            (not (memq number gnus-newsgroup-sparse)))
-       ;; This article shouldn't be counted.
-       (apply gnus-thread-score-function
-              (mapcar 'gnus-thread-total-score
-                      (cdr (gnus-gethash (mail-header-id root)
-                                         gnus-newsgroup-dependencies))))
-      ;; This article should be counted.
-      (apply gnus-thread-score-function
-            (or (cdr (assq number gnus-newsgroup-scored))
-                gnus-summary-default-score 0)
-            (mapcar 'gnus-thread-total-score
-                    (cdr (gnus-gethash (mail-header-id root)
-                                       gnus-newsgroup-dependencies)))))))
+  (apply gnus-thread-score-function
+        (or (cdr (assq (mail-header-number root) gnus-newsgroup-scored))
+            gnus-summary-default-score 0)
+        (mapcar 'gnus-thread-total-score
+                (cdr (gnus-gethash (mail-header-id root)
+                                   gnus-newsgroup-dependencies)))))
 
 ;; Added by Per Abrahamsen <amanda@iesd.auc.dk>.
 (defvar gnus-tmp-prev-subject nil)
@@ -8968,7 +8959,8 @@ If READ-ALL is non-nil, all articles in the group are selected."
        ;; Adjust assocs.
        ((memq mark '(score bookmark))
        (while articles
-         (when (or (< (car (setq article (pop articles))) min)
+         (when (or (not (consp (setq article (pop articles))))
+                   (< (car article) min)
                    (> (car article) max))
            (set var (delq article (symbol-value var))))))))))
 
@@ -13311,7 +13303,7 @@ The directory to save in defaults to `gnus-article-save-directory'."
                (t (gnus-read-save-file-name
                    "Save body in file:" default-name))))
     (gnus-make-directory (file-name-directory filename))
-    (gnus-eval-in-buffer-window gnus-article-buffer
+    (gnus-eval-in-buffer-window gnus-original-article-buffer
       (save-excursion
        (save-restriction
          (widen)