(regexp-or): Moved from semi-def.el.
authormorioka <morioka>
Fri, 10 Apr 1998 00:40:17 +0000 (00:40 +0000)
committermorioka <morioka>
Fri, 10 Apr 1998 00:40:17 +0000 (00:40 +0000)
mime-parse.el

index 493bbcb..ac77bff 100644 (file)
@@ -45,6 +45,9 @@ which are string or symbol."
 (defsubst regexp-* (regexp)
   (concat regexp "*"))
 
+(defsubst regexp-or (&rest args)
+  (concat "\\(" (mapconcat (function identity) args "\\|") "\\)"))
+
 (defconst rfc822/quoted-pair-regexp "\\\\.")
 (defconst rfc822/qtext-regexp
   (concat "[^" (char-list-to-string std11-non-qtext-char-list) "]"))