diff options
author | Miles Bader <miles@gnu.org> | 2008-12-19 02:40:25 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 2008-12-19 02:40:25 +0000 |
commit | c7948b5fadad5b745f7733daac11a19fbfcc6ccf (patch) | |
tree | d9a08e3e58b2143fe59fc305e79f1b5b3cf9a27b /lisp/gnus/mml.el | |
parent | f013149203926418962838d68bc7f09d35c16052 (diff) | |
download | emacs-c7948b5fadad5b745f7733daac11a19fbfcc6ccf.tar.gz |
Merge from gnus--devo--0
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-1505
Diffstat (limited to 'lisp/gnus/mml.el')
-rw-r--r-- | lisp/gnus/mml.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/gnus/mml.el b/lisp/gnus/mml.el index 3e3cb2ccda4..14e060b117a 100644 --- a/lisp/gnus/mml.el +++ b/lisp/gnus/mml.el @@ -1289,7 +1289,9 @@ body) or \"attachment\" (separate from the body)." (unless (message-in-body-p) (goto-char (point-max))) (mml-insert-empty-tag 'part 'type type - 'filename file + ;; icicles redefines read-file-name and returns a + ;; string w/ text properties :-/ + 'filename (mm-substring-no-properties file) 'disposition (or disposition "attachment") 'description description))) |