From 50dff58d456a0943e8ae9a7f47ff1fe6d39409d9 Mon Sep 17 00:00:00 2001 From: morioka Date: Sat, 22 Feb 1997 17:00:56 +0000 Subject: [PATCH] (eword-field-encoding-method-alist): Don't refer variable `mime/no-encoding-header-fields'. --- eword-encode.el | 21 ++++++--------------- 1 file changed, 6 insertions(+), 15 deletions(-) diff --git a/eword-encode.el b/eword-encode.el index 83d22a4..ba9876d 100644 --- a/eword-encode.el +++ b/eword-encode.el @@ -3,7 +3,7 @@ ;; Copyright (C) 1995,1996,1997 Free Software Foundation, Inc. ;; Author: MORIOKA Tomohiko -;; 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)) @@ -43,19 +43,10 @@ ;;; (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. -- 1.7.10.4