Rename 'rfc822/quoted-pair-regexp -> 'std11-quoted-pair-regexp.
authormorioka <morioka>
Thu, 28 May 1998 12:41:09 +0000 (12:41 +0000)
committermorioka <morioka>
Thu, 28 May 1998 12:41:09 +0000 (12:41 +0000)
mime-parse.el

index 2741a04..ce135ff 100644 (file)
 (defsubst regexp-or (&rest args)
   (concat "\\(" (mapconcat (function identity) args "\\|") "\\)"))
 
-(defconst rfc822/quoted-pair-regexp "\\\\.")
+(defconst std11-quoted-pair-regexp "\\\\.")
 (defconst rfc822/qtext-regexp
   (concat "[^" (char-list-to-string std11-non-qtext-char-list) "]"))
 (defconst rfc822/quoted-string-regexp
   (concat "\""
          (regexp-*
-          (regexp-or rfc822/qtext-regexp rfc822/quoted-pair-regexp)
+          (regexp-or rfc822/qtext-regexp std11-quoted-pair-regexp)
           )
          "\""))