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