* wl-draft.el (wl-draft-remove-text-plain-tag): Specify subtype
authoryoichi <yoichi>
Mon, 10 Feb 2003 16:29:55 +0000 (16:29 +0000)
committeryoichi <yoichi>
Mon, 10 Feb 2003 16:29:55 +0000 (16:29 +0000)
explicitly for mime-make-text-tag.

wl/ChangeLog
wl/wl-draft.el

index 8697f4a..30c002e 100644 (file)
@@ -1,3 +1,8 @@
+2003-02-11  Yoichi NAKAYAMA  <yoichi@eken.phys.nagoya-u.ac.jp>
+
+       * wl-draft.el (wl-draft-remove-text-plain-tag): Specify subtype
+       explicitly for mime-make-text-tag.
+
 2003-02-10  TAKAHASHI Kaoru  <kaoru@kaisei.org>
 
        * wl-draft.el (wl-draft-remove-text-plain-tag): Use
index a6cc9a7..bd5e929 100644 (file)
@@ -1870,7 +1870,7 @@ If KILL-WHEN-DONE is non-nil, current draft buffer is killed"
 
 (defun wl-draft-remove-text-plain-tag ()
   "Remove text/plain tag of mime-edit."
-  (when (string= (mime-make-text-tag)
+  (when (string= (mime-make-text-tag "plain")
                 (buffer-substring-no-properties (point-at-bol)(point-at-eol)))
     (delete-region (point-at-bol)(1+ (point-at-eol)))))