+1999-09-29 MORIOKA Tomohiko <tomo@m17n.org>
+
+ * mime-play.el (mime-preview-play-current-entity): Use
+ text-property `mime-view-situation' as the initial value of
+ acting-situation to add major-mode.
+
+1999-09-29 MORIOKA Tomohiko <tomo@m17n.org>
+
+ * mime-edit.el (mime-content-types): Delete text/x-rot13-47-48 in
+ default definition. [cf. <tm-ja:4904>, <tm-ja:4907>]
+
1999-09-27 Katsumi Yamaoka <yamaoka@jpl.org>
* mime-edit.el (mime-edit-user-agent-value): Include
(interactive "P")
(let ((entity (get-text-property (point) 'mime-view-entity)))
(if entity
- (let ((situation (list (cons 'mode (or mode "play")))))
+ (let ((situation
+ (get-text-property (point) 'mime-view-situation)))
+ (or mode
+ (setq mode "play"))
+ (setq situation
+ (if (assq 'mode situation)
+ (put-alist 'mode mode (copy-alist situation))
+ (cons (cons 'mode mode)
+ situation)))
(if ignore-examples
(setq situation
(cons (cons 'ignore-examples ignore-examples)