From: morioka Date: Mon, 15 Apr 1996 08:56:37 +0000 (+0000) Subject: (rfc822/parse-ascii-token): nil check for token-value X-Git-Tag: XEmacs-20_3-b27-viet~118 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=e0190f87fc44cc46ea2df5d845917445a2a09fe9;p=elisp%2Fmu-cite.git (rfc822/parse-ascii-token): nil check for token-value --- diff --git a/tl-822.el b/tl-822.el index 3433183..2ca477d 100644 --- 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)) @@ -347,10 +347,11 @@ )) (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) ))