;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
;; Version:
-;; $Id: mime-setup.el,v 0.5 1997-02-24 01:32:33 tmorioka Exp $
+;; $Id: mime-setup.el,v 0.6 1997-02-24 02:21:41 tmorioka Exp $
;; Keywords: MIME, multimedia, multilingual, mail, news
;; This file is part of SEMI (SEMI is Emacs MIME Interfaces).
(autoload 'mime-edit-mode "mime-edit"
"Minor mode for editing MIME message." t)
-(autoload 'eword-decode-message-header "eword-decode"
- "Decode MIME encoded-words in message header." t)
+(autoload 'eword-decode-header "eword-decode"
+ "Decode MIME encoded-words in header fields." t)
(defun mime-setup-decode-message-header ()
(save-excursion
(match-beginning 0)
(point-max)
))
- (eword-decode-message-header)
+ (eword-decode-header)
(set-buffer-modified-p nil)
)))
;;; @ for mu-cite
;;;
-(add-hook 'mu-cite/pre-cite-hook 'eword-decode-message-header)
+(add-hook 'mu-cite/pre-cite-hook 'eword-decode-header)
;;; @ for mail-mode, RMAIL and VM
;;;
-(add-hook 'mail-setup-hook 'eword-decode-message-header)
+(add-hook 'mail-setup-hook 'eword-decode-header)
(add-hook 'mail-setup-hook 'mime-edit-mode 'append)
(add-hook 'mail-send-hook 'mime-edit-maybe-translate)
(set-alist 'mime-edit-split-message-sender-alist
;; Created: 1994/7/13
;; Renamed: 1994/8/31 from tm-body.el
;; Renamed: 1997/02/19 from tm-view.el
-;; Version: $Revision: 0.11 $
+;; Version: $Revision: 0.12 $
;; Keywords: MIME, multimedia, mail, news
;; This file is part of SEMI (SEMI is Emacs MIME Interfaces).
;;;
(defconst mime-view-RCS-ID
- "$Id: mime-view.el,v 0.11 1997-02-24 01:59:28 tmorioka Exp $")
+ "$Id: mime-view.el,v 0.12 1997-02-24 02:23:03 tmorioka Exp $")
(defconst mime-view-version (get-version-string mime-view-RCS-ID))
(defun mime-view-default-content-header-filter ()
(mime-preview/cut-header)
- (eword-decode-message-header)
+ (eword-decode-header)
)
(defvar mime-view-content-header-filter-alist nil)
))
(setq rest (cdr rest))
))
- (eword-decode-message-header)
+ (eword-decode-header)
)
(let ((f (cdr (assq mode mime-view-following-method-alist))))
(if (functionp f)