Ask user for MIME type and subtype during interactive file insertion,
authorvitaly <vitaly>
Mon, 25 Jan 2010 09:27:20 +0000 (09:27 +0000)
committervitaly <vitaly>
Mon, 25 Jan 2010 09:27:20 +0000 (09:27 +0000)
not only encoding.

ChangeLog
mime-edit.el

index f3f48e2..b945855 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,10 @@
+2010-01-25  Vitaly Mayatskikh  <v.mayatskih@gmail.com>
+
+       * mime-edit.el (mime-edit-insert-file): Ask user for MIME type and
+       subtype during interactive file insertion, not only encoding.
+
 2010-01-19  Vitaly Mayatskikh  <v.mayatskih@gmail.com>
+
        * mime-view.el (toplevel): New defcustom: mime-view-buttons-visible
        * mime-view.el (mime-display-entity): Use mime-view-buttons-visible
        to control visibility of MIME buttons.
index e1577f0..fc68f79 100644 (file)
@@ -1157,13 +1157,10 @@ If optional argument SUBTYPE is not nil, text/SUBTYPE tag is inserted."
          (disposition-type (nth 4 guess))
          (disposition-params (nth 5 guess))
          )
-    (if verbose
-       (setq type    (mime-prompt-for-type type)
-             subtype (mime-prompt-for-subtype type subtype)
-             ))
     (if (or (interactive-p) verbose)
-       (setq encoding (mime-prompt-for-encoding encoding))
-      )
+       (setq type (mime-prompt-for-type type)
+             subtype (mime-prompt-for-subtype type subtype)
+             encoding (mime-prompt-for-encoding encoding)))
     (if (or (consp parameters) (stringp disposition-type))
        (let ((rest parameters) cell attribute value)
          (setq parameters "")