(rfc822/parse-ascii-token): nil check for token-value
authormorioka <morioka>
Mon, 15 Apr 1996 08:56:37 +0000 (08:56 +0000)
committermorioka <morioka>
Mon, 15 Apr 1996 08:56:37 +0000 (08:56 +0000)
tl-822.el

index 3433183..2ca477d 100644 (file)
--- a/tl-822.el
+++ b/tl-822.el
@@ -30,7 +30,7 @@
 
 
 (defconst rfc822/RCS-ID
-  "$Id: tl-822.el,v 7.6 1996-03-25 10:21:25 morioka Exp $")
+  "$Id: tl-822.el,v 7.7 1996-04-15 08:56:37 morioka Exp $")
 (defconst rfc822/version (get-version-string rfc822/RCS-ID))
 
 
     ))
 
 (defun rfc822/parse-ascii-token (lal)
-  (let (token itl parsed)
+  (let (token itl parsed token-value)
     (while (and lal
                (setq token (car lal))
-               (if (find-charset-string (cdr token))
+               (setq token-value (cdr token))
+               (if (find-charset-string token-value)
                    (setq token nil)
                  (rfc822/ignored-token-p token)
                  ))