]> git.eshelyaron.com Git - emacs.git/commitdiff
(gnus-article-mode-line-format-alist): Move here from gnus-art.
authorGlenn Morris <rgm@gnu.org>
Wed, 5 Mar 2008 03:56:36 +0000 (03:56 +0000)
committerGlenn Morris <rgm@gnu.org>
Wed, 5 Mar 2008 03:56:36 +0000 (03:56 +0000)
(top-level): No need to load own source when compiling.

lisp/gnus/ChangeLog
lisp/gnus/gnus-sum.el

index e68544a96f9e114db15dd66476e7a4ffe7f17462..16647a5b10f6d8060711e032339ce9cf79f89f33 100644 (file)
@@ -1,3 +1,10 @@
+2008-03-05  Glenn Morris  <rgm@gnu.org>
+
+       * gnus-art.el (gnus-article-mode-line-format-alist): Move to gnus-sum.
+       * gnus-sum.el (gnus-article-mode-line-format-alist): Move here from
+       gnus-art.
+       (top-level): No need to load own source when compiling.
+
 2008-03-04  Glenn Morris  <rgm@gnu.org>
 
        * gnus-sum.el (top-level): No need to require gnus when compiling,
index f4dc4ea43cda590c6cc8c7787ad516b9b5d41c8e..ce22d17168626e4dcbe048c3775cb3b053fe16ca 100644 (file)
@@ -1372,6 +1372,12 @@ the type of the variable (string, integer, character, etc).")
     (?E gnus-newsgroup-expunged-tally ?d)
     (?s (gnus-current-score-file-nondirectory) ?s)))
 
+;; This is here rather than in gnus-art for compilation reasons.
+(defvar gnus-article-mode-line-format-alist
+  (nconc '((?w (gnus-article-wash-status) ?s)
+          (?m (gnus-article-mime-part-status) ?s))
+        gnus-summary-mode-line-format-alist))
+
 (defvar gnus-last-search-regexp nil
   "Default regexp for article search command.")
 
@@ -1563,21 +1569,10 @@ For example:
         \"^From:\\\\|^Newsgroups:\\\\|^Subject:\\\\|^Date:\\\\|^To:\")))
 ")
 
-;; Byte-compiler warning.  Specifically, this is responsible for:
-;; "Warning: the following functions might not be defined at runtime:
-;; gnus-build-sparse-threads, gnus-dead-summary-mode, gnus-summary-mark-below".
 (eval-when-compile
   ;; Bind features so that require will believe that gnus-sum has
   ;; already been loaded (avoids infinite recursion)
   (let ((features (cons 'gnus-sum features)))
-    ;; Several of the declarations in gnus-sum are needed to load the
-    ;; following files. Right now, these definitions have been
-    ;; compiled but not defined (evaluated).  We could either do a
-    ;; eval-and-compile about all of the declarations or evaluate the
-    ;; source file.
-    (if (boundp 'gnus-newsgroup-variables)
-        nil
-      (load "gnus-sum.el" t t t))
     (require 'gnus-art)))
 
 ;; MIME stuff.