From 87b12deff99b31e973d14ebee2285e00dc3edb9b Mon Sep 17 00:00:00 2001 From: morioka Date: Mon, 17 Mar 1997 16:03:11 +0000 Subject: [PATCH] `mime-view-next-content' -> `mime-view-move-to-next'. --- mime-view.el | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/mime-view.el b/mime-view.el index a803070..3650194 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.56 $ +;; Version: $Revision: 0.57 $ ;; 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.56 1997-03-17 15:59:51 morioka Exp $") + "$Id: mime-view.el,v 0.57 1997-03-17 16:03:11 morioka Exp $") (defconst mime-view-version (get-version-string mime-view-RCS-ID)) @@ -701,7 +701,7 @@ The compressed face will be piped to this command.") (defconst mime-view-menu-list '((up "Move to upper content" mime-view-move-to-upper) (previous "Move to previous content" mime-view-move-to-previous) - (next "Move to next content" mime-view-next-content) + (next "Move to next content" mime-view-move-to-next) (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-view-play-current-entity) @@ -741,11 +741,11 @@ The compressed face will be piped to this command.") (define-key mime-view-mode-map "p" (function mime-view-move-to-previous)) (define-key mime-view-mode-map - "n" (function mime-view-next-content)) + "n" (function mime-view-move-to-next)) (define-key mime-view-mode-map "\e\t" (function mime-view-move-to-previous)) (define-key mime-view-mode-map - "\t" (function mime-view-next-content)) + "\t" (function mime-view-move-to-next)) (define-key mime-view-mode-map " " (function mime-view-scroll-up-content)) (define-key mime-view-mode-map @@ -1065,7 +1065,10 @@ variable `mime-view-over-to-previous-method-alist'." )) ))) -(defun mime-view-next-content () +(defun mime-view-move-to-next () + "Move to next entity. +If there is no previous entity, it calls function registered in +variable `mime-view-over-to-next-method-alist'." (interactive) (let ((pcl mime::preview/content-list) (p (point)) -- 1.7.10.4