;; 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).
;;;
(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))
(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)
(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
))
)))
-(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))