From c7e86ea0b75370c29affd588306c7bbadf0c456a Mon Sep 17 00:00:00 2001 From: yamaoka Date: Mon, 6 Jan 2003 22:48:44 +0000 Subject: [PATCH] Synch with Oort Gnus. --- lisp/ChangeLog | 8 ++++++++ lisp/gnus-sum.el | 6 +++--- lisp/gnus.el | 6 +++--- 3 files changed, 14 insertions(+), 6 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 66f3d53..aa9f702 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,13 @@ 2002-01-06 Kevin Greiner + * gnus.el: Renamed gnus-summary-*-uncached-face as + gnus-summary-*-undownloaded-face to avoid confusing the agent with + the cache. + + * gnus-sum.el: Ditto. + +2002-01-06 Kevin Greiner + * gnus-agent.el (gnus-agent-fetch-group): Modified to permit execution in either the group or summary buffer. New command "JS", in summary buffer, will fetch articles per the diff --git a/lisp/gnus-sum.el b/lisp/gnus-sum.el index ce48376..d6b9382 100644 --- a/lisp/gnus-sum.el +++ b/lisp/gnus-sum.el @@ -888,11 +888,11 @@ automatically when it is selected." '(((eq mark gnus-canceled-mark) . gnus-summary-cancelled-face) ((and uncached (> score default-high)) - . gnus-summary-high-uncached-face) + . gnus-summary-high-undownloaded-face) ((and uncached (< score default-low)) - . gnus-summary-low-uncached-face) + . gnus-summary-low-undownloaded-face) (uncached - . gnus-summary-normal-uncached-face) + . gnus-summary-normal-undownloaded-face) ((and (> score default-high) (or (eq mark gnus-dormant-mark) (eq mark gnus-ticked-mark))) diff --git a/lisp/gnus.el b/lisp/gnus.el index 18b8115..aa8ef80 100644 --- a/lisp/gnus.el +++ b/lisp/gnus.el @@ -667,7 +667,7 @@ be set in `.emacs' instead." ())) "Face used for normal interest ancient articles.") -(defface gnus-summary-high-uncached-face +(defface gnus-summary-high-undownloaded-face '((((class color) (background light)) (:bold t :foreground "cyan4" :bold nil)) @@ -676,7 +676,7 @@ be set in `.emacs' instead." (t (:inverse-video t :bold t))) "Face used for high interest uncached articles.") -(defface gnus-summary-low-uncached-face +(defface gnus-summary-low-undownloaded-face '((((class color) (background light)) (:italic t :foreground "cyan4" :bold nil)) @@ -685,7 +685,7 @@ be set in `.emacs' instead." (t (:inverse-video t :italic t))) "Face used for low interest uncached articles.") -(defface gnus-summary-normal-uncached-face +(defface gnus-summary-normal-undownloaded-face '((((class color) (background light)) (:foreground "cyan4" :bold nil)) -- 1.7.10.4