aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorPaul Eggert2011-07-29 14:14:19 -0700
committerPaul Eggert2011-07-29 14:14:19 -0700
commiteacb6b4bfa897c12c41a4af73f40ab61b45a8548 (patch)
treed0f9e055b6780b64db72c65753a793e1d1a59f66 /lisp
parent5402029425ceee114d7ed071ac981227f0d1fc38 (diff)
parent096a60526593c1571da1ec9137b878ad8178f833 (diff)
downloademacs-eacb6b4bfa897c12c41a4af73f40ab61b45a8548.tar.gz
emacs-eacb6b4bfa897c12c41a4af73f40ab61b45a8548.zip
Merge from trunk.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/gnus/ChangeLog5
-rw-r--r--lisp/gnus/mm-decode.el8
-rw-r--r--lisp/org/ChangeLog5
3 files changed, 15 insertions, 3 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index f90e180b128..acdd1033933 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,3 +1,8 @@
12011-07-29 Daniel Dehennin <daniel.dehennin@baby-gnu.org>
2
3 * mm-decode.el (mm-dissect-buffer): Add a default content-disposition
4 in mm handle if none is specified.
5
12011-07-24 Andrew Cohen <cohen@andy.bu.edu> 62011-07-24 Andrew Cohen <cohen@andy.bu.edu>
2 7
3 * nnimap.el (nnimap-make-thread-query): Quote message-ids for gmail. 8 * nnimap.el (nnimap-make-thread-query): Quote message-ids for gmail.
diff --git a/lisp/gnus/mm-decode.el b/lisp/gnus/mm-decode.el
index a51c6630ac5..692175d471f 100644
--- a/lisp/gnus/mm-decode.el
+++ b/lisp/gnus/mm-decode.el
@@ -564,7 +564,13 @@ Postpone undisplaying of viewers for types in
564 (setq ct (mail-fetch-field "content-type") 564 (setq ct (mail-fetch-field "content-type")
565 ctl (and ct (mail-header-parse-content-type ct)) 565 ctl (and ct (mail-header-parse-content-type ct))
566 cte (mail-fetch-field "content-transfer-encoding") 566 cte (mail-fetch-field "content-transfer-encoding")
567 cd (mail-fetch-field "content-disposition") 567 cd (or (mail-fetch-field "content-disposition")
568 (when (and ctl
569 (eq 'mm-inline-text
570 (cadr (mm-assoc-string-match
571 mm-inline-media-tests
572 (car ctl)))))
573 "inline"))
568 ;; Newlines in description should be stripped so as 574 ;; Newlines in description should be stripped so as
569 ;; not to break the MIME tag into two or more lines. 575 ;; not to break the MIME tag into two or more lines.
570 description (message-fetch-field "content-description") 576 description (message-fetch-field "content-description")
diff --git a/lisp/org/ChangeLog b/lisp/org/ChangeLog
index 6af95d39ae2..0822f313ac4 100644
--- a/lisp/org/ChangeLog
+++ b/lisp/org/ChangeLog
@@ -3293,9 +3293,10 @@
3293 * org-capture.el (org-capture-fill-template): fix bug with the 3293 * org-capture.el (org-capture-fill-template): fix bug with the
3294 display of interactive prompt in templates expansion. 3294 display of interactive prompt in templates expansion.
3295 3295
32962011-07-28 Reiner Steib <reinersteib+gmane@imap.cc> 32962011-07-28 Reiner Steib <reiner.steib@gmx.de>
3297 3297
3298 * org-clock.el (org-clock-display): docstring fiw. 3298 * org-clock.el (org-clock-display): Document how to remove subtree
3299 times.
3299 3300
33002011-07-28 Eric Schulte <schulte.eric@gmail.com> 33012011-07-28 Eric Schulte <schulte.eric@gmail.com>
3301 3302