;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
;; Version:
-;; $Id: mime-text.el,v 0.22 1997-03-18 15:12:10 morioka Exp $
+;; $Id: mime-text.el,v 0.23 1997-04-03 17:39:31 morioka Exp $
;; Keywords: text, MIME, multimedia, mail, news
;; This file is part of SEMI (SEMI is Emacs MIME Interfaces).
;;; @ content filters for mime-text
;;;
-(defun mime-preview/filter-for-text/plain (ctype params encoding)
+(defun mime-view-filter-for-text/plain (ctype params encoding)
(mime-decode-text-body (cdr (assoc "charset" params)) encoding)
(goto-char (point-max))
(if (not (eq (char-after (1- (point))) ?\n))
(run-hooks 'mime-view-plain-text-preview-hook)
)
-(defun mime-preview/filter-for-text/richtext (ctype params encoding)
+(defun mime-view-filter-for-text/richtext (ctype params encoding)
(let* ((charset (cdr (assoc "charset" params)))
(beg (point-min))
)
(richtext-decode beg (point-max))
))
-(defun mime-preview/filter-for-text/enriched (ctype params encoding)
+(defun mime-view-filter-for-text/enriched (ctype params encoding)
(let* ((charset (cdr (assoc "charset" params)))
(beg (point-min))
)