From: morioka Date: Thu, 28 May 1998 12:41:09 +0000 (+0000) Subject: Rename 'rfc822/quoted-pair-regexp -> 'std11-quoted-pair-regexp. X-Git-Tag: remi-1_4_0_91~28 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=8c520eb9d6609d567735a234657c799ec8aeaf58;p=elisp%2Fsemi.git Rename 'rfc822/quoted-pair-regexp -> 'std11-quoted-pair-regexp. --- diff --git a/mime-parse.el b/mime-parse.el index 2741a04..ce135ff 100644 --- a/mime-parse.el +++ b/mime-parse.el @@ -38,13 +38,13 @@ (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) ) "\""))