`mime-view-up-content' -> `mime-view-move-to-upper'.
authormorioka <morioka>
Mon, 17 Mar 1997 15:43:20 +0000 (15:43 +0000)
committermorioka <morioka>
Mon, 17 Mar 1997 15:43:20 +0000 (15:43 +0000)
mime-view.el

index cf99b32..07e65a1 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.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)))