Variable `tm:warning-face' was renamed to `eword-warning-face'.
authortmorioka <tmorioka>
Tue, 25 Feb 1997 06:36:53 +0000 (06:36 +0000)
committertmorioka <tmorioka>
Tue, 25 Feb 1997 06:36:53 +0000 (06:36 +0000)
eword-decode.el

index 90d0196..f2c2eca 100644 (file)
@@ -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.9 $
+;; Version: $Revision: 0.10 $
 ;; 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.9 1997-02-25 06:35:29 tmorioka Exp $")
+  "$Id: eword-decode.el,v 0.10 1997-02-25 06:36:53 tmorioka Exp $")
 (defconst eword-decode-version (get-version-string eword-decode-RCS-ID))
 
 
@@ -212,7 +212,7 @@ If SEPARATOR is not nil, it is used as header separator."
 ;;; @ encoded-word decoder
 ;;;
 
-(defvar tm:warning-face nil "Face used for invalid encoded-word.")
+(defvar eword-warning-face nil "Face used for invalid encoded-word.")
 
 (defun eword-decode-encoded-word (word &optional must-unfold)
   "Decode WORD if it is an encoded-word.
@@ -237,10 +237,11 @@ 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 tm:warning-face
-                                                 (list 'face tm:warning-face))
-                                            word)
+               (and (tl:add-text-properties
+                    0 (length word)
+                    (and eword-warning-face
+                         (list 'face eword-warning-face))
+                    word)
                     word)))
             ))
       word))