`mime-view-print-content' -> `mime-print-entity'.
authormorioka <morioka>
Mon, 17 Mar 1997 11:52:19 +0000 (11:52 +0000)
committermorioka <morioka>
Mon, 17 Mar 1997 11:52:19 +0000 (11:52 +0000)
mime-view.el

index 2015868..a6fe466 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.32 $
+;; Version: $Revision: 0.33 $
 ;; 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.32 1997-03-17 11:50:01 morioka Exp $")
+  "$Id: mime-view.el,v 0.33 1997-03-17 11:52:19 morioka Exp $")
 
 (defconst mime-view-version (get-version-string mime-view-RCS-ID))
 
@@ -717,7 +717,7 @@ The compressed face will be piped to this command.")
     (scroll-up  "Scroll to next content"     mime-view-scroll-up-content)
     (play       "Play Content"               mime-play-entity)
     (extract    "Extract Content"            mime-extract-entity)
-    (print      "Print"                      mime-view-print-content)
+    (print      "Print"                      mime-print-entity)
     (x-face     "Show X Face"                mime-view-display-x-face)
     )
   "Menu for MIME Viewer")
@@ -772,7 +772,7 @@ The compressed face will be piped to this command.")
     (define-key mime-view-mode-map
       "e"        (function mime-extract-entity))
     (define-key mime-view-mode-map
-      "\C-c\C-p" (function mime-view-print-content))
+      "\C-c\C-p" (function mime-print-entity))
     (define-key mime-view-mode-map
       "a"        (function mime-view-follow-content))
     (define-key mime-view-mode-map
@@ -902,7 +902,7 @@ button-2    Move to point under the mouse cursor
   (mime-play-entity "extract")
   )
 
-(defun mime-view-print-content ()
+(defun mime-print-entity ()
   (interactive)
   (mime-play-entity "print")
   )