(rfc822/lexical-analyze): New alias for `std11-lexical-analyze'; moved
authormorioka <morioka>
Wed, 28 Aug 1996 18:12:56 +0000 (18:12 +0000)
committermorioka <morioka>
Wed, 28 Aug 1996 18:12:56 +0000 (18:12 +0000)
to std11-parse.el.

tl-822.el

index ecd0455..5f5e240 100644 (file)
--- a/tl-822.el
+++ b/tl-822.el
@@ -30,7 +30,7 @@
 
 
 (defconst rfc822/RCS-ID
-  "$Id: tl-822.el,v 7.53 1996-08-28 18:07:50 morioka Exp $")
+  "$Id: tl-822.el,v 7.54 1996-08-28 18:12:56 morioka Exp $")
 (defconst rfc822/version (get-version-string rfc822/RCS-ID))
 
 
 ;;; @ lexical analyze
 ;;;
 
-(defconst rfc822/non-ctext-chars "()")
-
 (defalias 'rfc822/analyze-spaces       'std11-analyze-spaces)
 (defalias 'rfc822/analyze-special      'std11-analyze-special)
 (defalias 'rfc822/analyze-atom         'std11-analyze-atom)
 (defalias 'rfc822/analyze-domain-literal 'std11-analyze-domain-literal)
 (defalias 'rfc822/analyze-comment      'std11-analyze-comment)
 
-(defun rfc822/lexical-analyze (str)
-  (let (dest ret)
-    (while (not (string-equal str ""))
-      (setq ret
-           (or (rfc822/analyze-quoted-string str)
-               (rfc822/analyze-domain-literal str)
-               (rfc822/analyze-comment str)
-               (rfc822/analyze-spaces str)
-               (rfc822/analyze-special str)
-               (rfc822/analyze-atom str)
-               '((error) . "")
-               ))
-      (setq dest (cons (car ret) dest))
-      (setq str (cdr ret))
-      )
-    (nreverse dest)
-    ))
+(defalias 'rfc822/lexical-analyze      'std11-lexical-analyze)
 
 
 ;;; @ parser