+1999-02-17 Tanaka Akira <akr@jaist.ac.jp>
+
+ * mime-edit.el (mime-edit-define-charset): Check `mime-charset-comment'
+ property for mime-charset to add comment.
+
1999-01-18 Tanaka Akira <akr@jaist.ac.jp>
* mime-view.el (mime-display-text/x-vcard): Deal with bare LF as newline.
"A string formatted version of mime-transfer-level")
(make-variable-buffer-local 'mime-transfer-level-string)
+(put 'iso-2022-jp-2 'mime-charset-comment "RFC1554")
+(put 'iso-2022-jp 'mime-charset-comment "RFC1468 with trivial bugfix")
;;; @@ about content transfer encoding
(mime-create-tag
(mime-edit-set-parameter
(mime-edit-get-contype tag)
- "charset" (upcase (symbol-name charset)))
+ "charset"
+ (let ((comment (get charset 'mime-charset-comment)))
+ (if comment
+ (concat (upcase (symbol-name charset)) " (" comment ")")
+ (upcase (symbol-name charset)))))
(mime-edit-get-encoding tag)))
))))