From: tmorioka Date: Wed, 26 Feb 1997 07:58:29 +0000 (+0000) Subject: (eword-decode-encoded-word): Use `add-text-properties' directly. X-Git-Tag: Hokutetsu-Ishikawa-new~265 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=c0e3d7c4b5bb44440d048c91b7cf607651c6c510;p=elisp%2Fsemi.git (eword-decode-encoded-word): Use `add-text-properties' directly. --- diff --git a/eword-decode.el b/eword-decode.el index f2c2eca..20827c4 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.10 $ +;; Version: $Revision: 0.11 $ ;; 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.10 1997-02-25 06:36:53 tmorioka Exp $") + "$Id: eword-decode.el,v 0.11 1997-02-26 07:58:29 tmorioka Exp $") (defconst eword-decode-version (get-version-string eword-decode-RCS-ID)) @@ -237,12 +237,12 @@ as a version of Net$cape)." (condition-case err (eword-decode-encoded-text charset encoding text must-unfold) (error - (and (tl:add-text-properties - 0 (length word) - (and eword-warning-face - (list 'face eword-warning-face)) - word) - word))) + (and + (add-text-properties 0 (length word) + (and eword-warning-face + (list 'face eword-warning-face)) + word) + word))) )) word))