]> git.eshelyaron.com Git - emacs.git/commitdiff
Merge changes made in Gnus trunk
authorLars Ingebrigtsen <larsi@gnus.org>
Thu, 26 Jan 2012 10:43:01 +0000 (10:43 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Thu, 26 Jan 2012 10:43:01 +0000 (10:43 +0000)
nnimap.el (nnir-search-thread): Autoload to avoid a compilation warning.
gnus-sum.el (gnus-summary-line-format-alist): Don't try to macroexpand the nnir things, since they haven't been defined yet, and nnir requires gnus-sum.

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

index cdcdac87022fa24e5c4a3d2ee82dbdcc3a8f3135..9329188fc006bdf34e0195f074edae0d384edb40 100644 (file)
@@ -3,6 +3,17 @@
        * gnus-sum.el (gnus-summary-mode): Force paragraph direction to be
        left-to-right.
 
+2012-01-26  Lars Ingebrigtsen  <larsi@gnus.org>
+
+       * nnimap.el (nnir-search-thread): Autoload to avoid a compilation
+       warning.
+
+2012-01-25  Lars Ingebrigtsen  <larsi@gnus.org>
+
+       * gnus-sum.el (gnus-summary-line-format-alist): Don't try to
+       macroexpand the nnir things, since they haven't been defined yet, and
+       nnir requires gnus-sum.
+
 2012-01-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
        * mm-decode.el (mm-interactively-view-part): Fix prompt.
index 50178596e6c089d8f1c589651a03e7ba72cd2d88..26bd5b0bddc0f07a87c2681212bf84412583c690 100644 (file)
@@ -1371,15 +1371,12 @@ the normal Gnus MIME machinery."
     (?c (or (mail-header-chars gnus-tmp-header) 0) ?d)
     (?k (gnus-summary-line-message-size gnus-tmp-header) ?s)
     (?L gnus-tmp-lines ?s)
-    (?Z (or ,(gnus-macroexpand-all
-             '(nnir-article-rsv (mail-header-number gnus-tmp-header)))
+    (?Z (or (nnir-article-rsv (mail-header-number gnus-tmp-header))
            0) ?d)
-    (?G (or ,(gnus-macroexpand-all
-             '(nnir-article-group (mail-header-number gnus-tmp-header)))
+    (?G (or (nnir-article-group (mail-header-number gnus-tmp-header))
            "") ?s)
-    (?g (or ,(gnus-macroexpand-all
-             '(gnus-group-short-name
-               (nnir-article-group (mail-header-number gnus-tmp-header))))
+    (?g (or (gnus-group-short-name
+            (nnir-article-group (mail-header-number gnus-tmp-header)))
            "") ?s)
     (?O gnus-tmp-downloaded ?c)
     (?I gnus-tmp-indentation ?s)
index 0b0fc918c873753608ff71d37fd0d99e764d6ec2..0df7ffce671335e2011361d1e6c4e4ef9740600e 100644 (file)
@@ -1610,6 +1610,8 @@ textual parts.")
 (declare-function gnus-fetch-headers "gnus-sum"
                  (articles &optional limit force-new dependencies))
 
+(autoload 'nnir-search-thread "nnir")
+
 (deffoo nnimap-request-thread (header &optional group server)
   (when group
     (setq group (nnimap-decode-gnus-group group)))