`mime-view-next-content' -> `mime-view-move-to-next'.
authormorioka <morioka>
Mon, 17 Mar 1997 16:03:11 +0000 (16:03 +0000)
committermorioka <morioka>
Mon, 17 Mar 1997 16:03:11 +0000 (16:03 +0000)
mime-view.el

index a803070..3650194 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.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))