(eword-field-encoding-method-alist): Don't refer variable
authormorioka <morioka>
Sat, 22 Feb 1997 17:00:56 +0000 (17:00 +0000)
committermorioka <morioka>
Sat, 22 Feb 1997 17:00:56 +0000 (17:00 +0000)
`mime/no-encoding-header-fields'.

eword-encode.el

index 83d22a4..ba9876d 100644 (file)
@@ -3,7 +3,7 @@
 ;; Copyright (C) 1995,1996,1997 Free Software Foundation, Inc.
 
 ;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
-;; Version: $Revision: 0.1 $
+;; Version: $Revision: 0.2 $
 ;; Keywords: encoded-word, MIME, multilingual, header, mail, news
 
 ;; This file is part of SEMI (SEMI is Emacs MIME Interfaces).
@@ -35,7 +35,7 @@
 ;;;
 
 (defconst eword-encode-RCS-ID
-  "$Id: eword-encode.el,v 0.1 1997-02-22 16:59:39 morioka Exp $")
+  "$Id: eword-encode.el,v 0.2 1997-02-22 17:00:56 morioka Exp $")
 (defconst eword-encode-version (get-version-string eword-encode-RCS-ID))
 
 
 ;;;
 
 (defvar eword-field-encoding-method-alist
-  (if (boundp 'mime/no-encoding-header-fields)
-      (nconc
-       (mapcar (function
-               (lambda (field-name)
-                 (cons field-name 'default-mime-charset)
-                 ))
-              mime/no-encoding-header-fields)
-       '((t . mime))
-       )
-    '(("X-Nsubject" . iso-2022-jp-2)
-      ("Newsgroups" . nil)
-      (t            . mime)
-      ))
+  '(("X-Nsubject" . iso-2022-jp-2)
+    ("Newsgroups" . nil)
+    (t            . mime)
+    )
   "*Alist to specify field encoding method.
 Its key is field-name, value is encoding method.