;; Created: 1994/7/13
;; Renamed: 1994/8/31 from tm-body.el
;; Renamed: 1997/02/19 from tm-view.el
-;; Version: $Revision: 0.66 $
+;; Version: $Revision: 0.67 $
;; Keywords: MIME, multimedia, mail, news
;; This file is part of SEMI (SEMI is Emacs MIME Interfaces).
;;;
(defconst mime-view-RCS-ID
- "$Id: mime-view.el,v 0.66 1997-03-18 08:07:23 morioka Exp $")
+ "$Id: mime-view.el,v 0.67 1997-03-18 08:08:44 morioka Exp $")
(defconst mime-view-version (get-version-string mime-view-RCS-ID))
(run-hooks 'mime-view-mode-hook)
)))
-(defun mime-preview/cinfo-to-pcinfo (cinfo)
- (let ((rpcl mime::preview/content-list) cell)
- (catch 'tag
- (while rpcl
- (setq cell (car rpcl))
- (if (eq cinfo (mime::preview-content-info/content-info cell))
- (throw 'tag cell)
- )
- (setq rpcl (cdr rpcl))
- ))))
-
(autoload 'mime-view-play-current-entity "mime-play" "Play current entity." t)
(defun mime-view-extract-current-entity ()