2004-01-05 Karl Pflästerer <sigurd@12move.de>
authorLars Magne Ingebrigtsen <larsi@gnus.org>
Tue, 6 Jan 2004 05:11:47 +0000 (05:11 +0000)
committerLars Magne Ingebrigtsen <larsi@gnus.org>
Tue, 6 Jan 2004 05:11:47 +0000 (05:11 +0000)
* mml.el (mml-minibuffer-read-disposition): Show attachment type
in prompt (tiny change)

lisp/ChangeLog
lisp/mml.el

index 53ad068..a61cb85 100644 (file)
@@ -1,3 +1,8 @@
+2004-01-05  Karl Pfl\e,Ad\e(Bsterer  <sigurd@12move.de>
+
+       * mml.el (mml-minibuffer-read-disposition): Show attachment type
+       in prompt (tiny change)
+
 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
 
        * messagexmas.el (message-xmas-redefine): Alias
index 570dcc9..d736a25 100644 (file)
@@ -939,10 +939,11 @@ See Info node `(emacs-mime)Composing'.
                      (if (string-match "^text/.*" type)
                          "inline"
                        "attachment")))
-        (disposition (completing-read "Disposition: "
-                                      '(("attachment") ("inline") (""))
-                                      nil
-                                      nil)))
+        (disposition (completing-read 
+                      (format "Disposition: (default %s): " default)
+                      '(("attachment") ("inline") (""))
+                      nil
+                      nil)))
     (if (not (equal disposition ""))
        disposition
       default)))