diff options
| author | Lars Ingebrigtsen | 2012-01-26 10:43:01 +0000 |
|---|---|---|
| committer | Katsumi Yamaoka | 2012-01-26 10:43:01 +0000 |
| commit | 18cd34c10ed8511b51564b7bad9fb627058ab9cf (patch) | |
| tree | 4d6ef3f21512dba3ef4ce75ec3f96bd3687de17f /lisp | |
| parent | d1caca805e681fd25e9c349aa30ddf7ead9c25ec (diff) | |
| download | emacs-18cd34c10ed8511b51564b7bad9fb627058ab9cf.tar.gz emacs-18cd34c10ed8511b51564b7bad9fb627058ab9cf.zip | |
Merge changes made in Gnus trunk
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.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/gnus/ChangeLog | 11 | ||||
| -rw-r--r-- | lisp/gnus/gnus-sum.el | 11 | ||||
| -rw-r--r-- | lisp/gnus/nnimap.el | 2 |
3 files changed, 17 insertions, 7 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index cdcdac87022..9329188fc00 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -3,6 +3,17 @@ | |||
| 3 | * gnus-sum.el (gnus-summary-mode): Force paragraph direction to be | 3 | * gnus-sum.el (gnus-summary-mode): Force paragraph direction to be |
| 4 | left-to-right. | 4 | left-to-right. |
| 5 | 5 | ||
| 6 | 2012-01-26 Lars Ingebrigtsen <larsi@gnus.org> | ||
| 7 | |||
| 8 | * nnimap.el (nnir-search-thread): Autoload to avoid a compilation | ||
| 9 | warning. | ||
| 10 | |||
| 11 | 2012-01-25 Lars Ingebrigtsen <larsi@gnus.org> | ||
| 12 | |||
| 13 | * gnus-sum.el (gnus-summary-line-format-alist): Don't try to | ||
| 14 | macroexpand the nnir things, since they haven't been defined yet, and | ||
| 15 | nnir requires gnus-sum. | ||
| 16 | |||
| 6 | 2012-01-21 Lars Magne Ingebrigtsen <larsi@gnus.org> | 17 | 2012-01-21 Lars Magne Ingebrigtsen <larsi@gnus.org> |
| 7 | 18 | ||
| 8 | * mm-decode.el (mm-interactively-view-part): Fix prompt. | 19 | * mm-decode.el (mm-interactively-view-part): Fix prompt. |
diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el index 50178596e6c..26bd5b0bddc 100644 --- a/lisp/gnus/gnus-sum.el +++ b/lisp/gnus/gnus-sum.el | |||
| @@ -1371,15 +1371,12 @@ the normal Gnus MIME machinery." | |||
| 1371 | (?c (or (mail-header-chars gnus-tmp-header) 0) ?d) | 1371 | (?c (or (mail-header-chars gnus-tmp-header) 0) ?d) |
| 1372 | (?k (gnus-summary-line-message-size gnus-tmp-header) ?s) | 1372 | (?k (gnus-summary-line-message-size gnus-tmp-header) ?s) |
| 1373 | (?L gnus-tmp-lines ?s) | 1373 | (?L gnus-tmp-lines ?s) |
| 1374 | (?Z (or ,(gnus-macroexpand-all | 1374 | (?Z (or (nnir-article-rsv (mail-header-number gnus-tmp-header)) |
| 1375 | '(nnir-article-rsv (mail-header-number gnus-tmp-header))) | ||
| 1376 | 0) ?d) | 1375 | 0) ?d) |
| 1377 | (?G (or ,(gnus-macroexpand-all | 1376 | (?G (or (nnir-article-group (mail-header-number gnus-tmp-header)) |
| 1378 | '(nnir-article-group (mail-header-number gnus-tmp-header))) | ||
| 1379 | "") ?s) | 1377 | "") ?s) |
| 1380 | (?g (or ,(gnus-macroexpand-all | 1378 | (?g (or (gnus-group-short-name |
| 1381 | '(gnus-group-short-name | 1379 | (nnir-article-group (mail-header-number gnus-tmp-header))) |
| 1382 | (nnir-article-group (mail-header-number gnus-tmp-header)))) | ||
| 1383 | "") ?s) | 1380 | "") ?s) |
| 1384 | (?O gnus-tmp-downloaded ?c) | 1381 | (?O gnus-tmp-downloaded ?c) |
| 1385 | (?I gnus-tmp-indentation ?s) | 1382 | (?I gnus-tmp-indentation ?s) |
diff --git a/lisp/gnus/nnimap.el b/lisp/gnus/nnimap.el index 0b0fc918c87..0df7ffce671 100644 --- a/lisp/gnus/nnimap.el +++ b/lisp/gnus/nnimap.el | |||
| @@ -1610,6 +1610,8 @@ textual parts.") | |||
| 1610 | (declare-function gnus-fetch-headers "gnus-sum" | 1610 | (declare-function gnus-fetch-headers "gnus-sum" |
| 1611 | (articles &optional limit force-new dependencies)) | 1611 | (articles &optional limit force-new dependencies)) |
| 1612 | 1612 | ||
| 1613 | (autoload 'nnir-search-thread "nnir") | ||
| 1614 | |||
| 1613 | (deffoo nnimap-request-thread (header &optional group server) | 1615 | (deffoo nnimap-request-thread (header &optional group server) |
| 1614 | (when group | 1616 | (when group |
| 1615 | (setq group (nnimap-decode-gnus-group group))) | 1617 | (setq group (nnimap-decode-gnus-group group))) |