Move 'regexp-* and 'regexp-or to mime-def.el of FLIM (Chao).
authormorioka <morioka>
Thu, 28 May 1998 13:37:23 +0000 (13:37 +0000)
committermorioka <morioka>
Thu, 28 May 1998 13:37:23 +0000 (13:37 +0000)
mime-parse.el

index 2753487..19cd2e7 100644 (file)
 ;;; @ field parser
 ;;;
 
-(defsubst regexp-* (regexp)
-  (concat regexp "*"))
-
-(defsubst regexp-or (&rest args)
-  (concat "\\(" (mapconcat (function identity) args "\\|") "\\)"))
-
-(defconst std11-quoted-pair-regexp "\\\\.")
-(defconst std11-qtext-regexp
-  (concat "[^" (char-list-to-string std11-non-qtext-char-list) "]"))
-(defconst std11-quoted-string-regexp
-  (concat "\""
-         (regexp-*
-          (regexp-or std11-qtext-regexp std11-quoted-pair-regexp)
-          )
-         "\""))
-
 (defconst mime/content-parameter-value-regexp
   (concat "\\("
          std11-quoted-string-regexp