Synch with Oort Gnus.
authoryamaoka <yamaoka>
Mon, 6 Jan 2003 22:48:44 +0000 (22:48 +0000)
committeryamaoka <yamaoka>
Mon, 6 Jan 2003 22:48:44 +0000 (22:48 +0000)
lisp/ChangeLog
lisp/gnus-sum.el
lisp/gnus.el

index 66f3d53..aa9f702 100644 (file)
@@ -1,5 +1,13 @@
 2002-01-06  Kevin Greiner  <kgreiner@xpediantsolutions.com>
 
+       * 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  <kgreiner@xpediantsolutions.com>
+
        * 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
index ce48376..d6b9382 100644 (file)
@@ -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)))
index 18b8115..aa8ef80 100644 (file)
@@ -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))