(mime-play-entity, mime-extract-entity, mime-print-entity): Add
authormorioka <morioka>
Mon, 17 Mar 1997 11:57:29 +0000 (11:57 +0000)
committermorioka <morioka>
Mon, 17 Mar 1997 11:57:29 +0000 (11:57 +0000)
DOC-string.

mime-view.el

index a6fe466..afa67c3 100644 (file)
@@ -6,7 +6,7 @@
 ;; Created: 1994/7/13
 ;;     Renamed: 1994/8/31 from tm-body.el
 ;;     Renamed: 1997/02/19 from tm-view.el
-;; Version: $Revision: 0.33 $
+;; Version: $Revision: 0.34 $
 ;; Keywords: MIME, multimedia, mail, news
 
 ;; This file is part of SEMI (SEMI is Emacs MIME Interfaces).
@@ -40,7 +40,7 @@
 ;;;
 
 (defconst mime-view-RCS-ID
-  "$Id: mime-view.el,v 0.33 1997-03-17 11:52:19 morioka Exp $")
+  "$Id: mime-view.el,v 0.34 1997-03-17 11:57:29 morioka Exp $")
 
 (defconst mime-view-version (get-version-string mime-view-RCS-ID))
 
@@ -895,14 +895,22 @@ button-2  Move to point under the mouse cursor
        (setq rpcl (cdr rpcl))
        ))))
 
-(autoload 'mime-play-entity "mime-play")
+(autoload 'mime-play-entity "mime-play" "Play current entity." t)
 
 (defun mime-extract-entity ()
+  "Extract current entity into file (maybe).
+It decodes current entity to call internal or external method as
+\"extract\" mode.  The method is selected from variable
+`mime/content-decoding-condition'."
   (interactive)
   (mime-play-entity "extract")
   )
 
 (defun mime-print-entity ()
+  "Print current entity (maybe).
+It decodes current entity to call internal or external method as
+\"print\" mode.  The method is selected from variable
+`mime/content-decoding-condition'."
   (interactive)
   (mime-play-entity "print")
   )