Rename `mime-preview/' -> `mime-preview-'.
authormorioka <morioka>
Fri, 13 Mar 1998 15:00:50 +0000 (15:00 +0000)
committermorioka <morioka>
Fri, 13 Mar 1998 15:00:50 +0000 (15:00 +0000)
mime-image.el
mime-play.el

index d24963a..825a419 100644 (file)
        ;;
        (autoload 'highlight-headers "highlight-headers")
        
-       (defun mime-preview/x-face-function-use-highlight-headers ()
+       (defun mime-preview-x-face-function-use-highlight-headers ()
         (highlight-headers (point-min) (re-search-forward "^$" nil t) t)
         )
        
        (add-hook 'mime-view-content-header-filter-hook
-                'mime-preview/x-face-function-use-highlight-headers)
+                'mime-preview-x-face-function-use-highlight-headers)
        
        )
       ((featurep 'mule)
index 435aa46..30cdfbf 100644 (file)
@@ -34,7 +34,7 @@
 ;;; @ content decoder
 ;;;
 
-(defvar mime-preview/after-decoded-position nil)
+(defvar mime-preview-after-decoded-position nil)
 
 (defun mime-view-play-current-entity (&optional mode)
   "Play current entity.
@@ -50,13 +50,13 @@ If MODE is specified, play as it.  Default MODE is \"play\"."
        (let ((the-buf (current-buffer))
              (raw-buffer (get-text-property (point) 'mime-view-raw-buffer))
              )
-         (setq mime-preview/after-decoded-position (point))
+         (setq mime-preview-after-decoded-position (point))
          (set-buffer raw-buffer)
          (mime-playback-entity cinfo mode)
          (if (eq (current-buffer) raw-buffer)
              (progn
                (set-buffer the-buf)
-               (goto-char mime-preview/after-decoded-position)
+               (goto-char mime-preview-after-decoded-position)
                ))
          ))))