From: morioka Date: Mon, 17 Mar 1997 11:50:01 +0000 (+0000) Subject: `mime-view-extract-content' -> `mime-extract-entity'. X-Git-Tag: Hokutetsu-Ishikawa-new~99 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=ba8841eb80197ece50ae80aa442f54aa68e7be73;p=elisp%2Fsemi.git `mime-view-extract-content' -> `mime-extract-entity'. --- diff --git a/mime-view.el b/mime-view.el index a25def4..2015868 100644 --- a/mime-view.el +++ b/mime-view.el @@ -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.31 $ +;; Version: $Revision: 0.32 $ ;; 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.31 1997-03-17 11:44:42 morioka Exp $") + "$Id: mime-view.el,v 0.32 1997-03-17 11:50:01 morioka Exp $") (defconst mime-view-version (get-version-string mime-view-RCS-ID)) @@ -716,7 +716,7 @@ The compressed face will be piped to this command.") (scroll-down "Scroll to previous content" mime-view-scroll-down-content) (scroll-up "Scroll to next content" mime-view-scroll-up-content) (play "Play Content" mime-play-entity) - (extract "Extract Content" mime-view-extract-content) + (extract "Extract Content" mime-extract-entity) (print "Print" mime-view-print-content) (x-face "Show X Face" mime-view-display-x-face) ) @@ -770,7 +770,7 @@ The compressed face will be piped to this command.") (define-key mime-view-mode-map "v" (function mime-play-entity)) (define-key mime-view-mode-map - "e" (function mime-view-extract-content)) + "e" (function mime-extract-entity)) (define-key mime-view-mode-map "\C-c\C-p" (function mime-view-print-content)) (define-key mime-view-mode-map @@ -897,7 +897,7 @@ button-2 Move to point under the mouse cursor (autoload 'mime-play-entity "mime-play") -(defun mime-view-extract-content () +(defun mime-extract-entity () (interactive) (mime-play-entity "extract") )