function `eword-decode-message-header' was renamed to
authortmorioka <tmorioka>
Mon, 24 Feb 1997 02:23:03 +0000 (02:23 +0000)
committertmorioka <tmorioka>
Mon, 24 Feb 1997 02:23:03 +0000 (02:23 +0000)
`eword-decode-header'.

mime-setup.el
mime-view.el

index 90c6687..38d4c01 100644 (file)
@@ -4,7 +4,7 @@
 
 ;; 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).
@@ -30,8 +30,8 @@
 
 (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
@@ -45,7 +45,7 @@
           (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
index 39efedf..5ce5dcb 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.11 $
+;; Version: $Revision: 0.12 $
 ;; Keywords: MIME, multimedia, mail, news
 
 ;; This file is part of SEMI (SEMI is Emacs MIME Interfaces).
@@ -43,7 +43,7 @@
 ;;;
 
 (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))
 
@@ -314,7 +314,7 @@ Each elements are regexp of field-name. [mime-view.el]")
 
 (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)
@@ -1007,7 +1007,7 @@ button-2  Move to point under the mouse cursor
                      ))
                (setq rest (cdr rest))
                ))
-           (eword-decode-message-header)
+           (eword-decode-header)
            )
          (let ((f (cdr (assq mode mime-view-following-method-alist))))
            (if (functionp f)