From 5a85087c8d7c16dc8bab28e19a16463e14b2ed54 Mon Sep 17 00:00:00 2001 From: morioka Date: Mon, 17 Mar 1997 15:43:20 +0000 Subject: [PATCH] `mime-view-up-content' -> `mime-view-move-to-upper'. --- mime-view.el | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/mime-view.el b/mime-view.el index cf99b32..07e65a1 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.53 $ +;; Version: $Revision: 0.54 $ ;; 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.53 1997-03-17 15:39:17 morioka Exp $") + "$Id: mime-view.el,v 0.54 1997-03-17 15:43:20 morioka Exp $") (defconst mime-view-version (get-version-string mime-view-RCS-ID)) @@ -699,7 +699,7 @@ The compressed face will be piped to this command.") (defconst mime-view-menu-title "MIME-View") (defconst mime-view-menu-list - '((up "Move to upper content" mime-view-up-content) + '((up "Move to upper content" mime-view-move-to-upper) (previous "Move to previous content" mime-view-previous-content) (next "Move to next content" mime-view-next-content) (scroll-down "Scroll to previous content" mime-view-scroll-down-content) @@ -737,7 +737,7 @@ The compressed face will be piped to this command.") (make-sparse-keymap) ))) (define-key mime-view-mode-map - "u" (function mime-view-up-content)) + "u" (function mime-view-move-to-upper)) (define-key mime-view-mode-map "p" (function mime-view-previous-content)) (define-key mime-view-mode-map @@ -1024,7 +1024,9 @@ It decodes current entity to call internal or external method as (mime-view-x-face-function) )) -(defun mime-view-up-content () +(defun mime-view-move-to-upper () + "Move to upper entity. +If there is no upper entity, call function `mime-view-quit'." (interactive) (let (cinfo) (while (null (setq cinfo (get-text-property (point) 'mime-view-cinfo))) -- 1.7.10.4