From d7cdc86861cabc33f6e897462392c141b9e935f1 Mon Sep 17 00:00:00 2001 From: morioka Date: Wed, 18 Jun 1997 13:26:28 +0000 Subject: [PATCH] (eword-decode-structured-field-body): fixed. --- eword-decode.el | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/eword-decode.el b/eword-decode.el index 0289314..9941117 100644 --- a/eword-decode.el +++ b/eword-decode.el @@ -10,7 +10,7 @@ ;; Renamed: 1993/06/03 to tiny-mime.el ;; Renamed: 1995/10/03 from tiny-mime.el (split off encoder) ;; Renamed: 1997/02/22 from tm-ew-d.el -;; Version: $Revision: 0.15 $ +;; Version: $Revision: 0.16 $ ;; Keywords: encoded-word, MIME, multilingual, header, mail, news ;; This file is part of SEMI (SEMI is Emacs MIME Interfaces). @@ -41,7 +41,7 @@ ;;; (defconst eword-decode-RCS-ID - "$Id: eword-decode.el,v 0.15 1997-06-16 16:00:13 morioka Exp $") + "$Id: eword-decode.el,v 0.16 1997-06-18 13:26:28 morioka Exp $") (defconst eword-decode-version (get-version-string eword-decode-RCS-ID)) @@ -410,9 +410,9 @@ such as a version of Net$cape)." (std11-wrap-as-quoted-string value) ) ((eq type 'comment) - (concat "\"" - (std11-wrap-as-quoted-pairs value) - "\"") + (concat "(" + (std11-wrap-as-quoted-pairs value '(?( ?))) + ")") ) (t value))))) -- 1.7.10.4