From 31c71fd2b28d49765c95ca87cd338dff72c6179e Mon Sep 17 00:00:00 2001 From: morioka Date: Thu, 28 May 1998 12:42:23 +0000 Subject: [PATCH] Rename 'rfc822/qtext-regexp -> 'std11-qtext-regexp. --- mime-parse.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mime-parse.el b/mime-parse.el index ce135ff..9127bda 100644 --- a/mime-parse.el +++ b/mime-parse.el @@ -39,12 +39,12 @@ (concat "\\(" (mapconcat (function identity) args "\\|") "\\)")) (defconst std11-quoted-pair-regexp "\\\\.") -(defconst rfc822/qtext-regexp +(defconst std11-qtext-regexp (concat "[^" (char-list-to-string std11-non-qtext-char-list) "]")) (defconst rfc822/quoted-string-regexp (concat "\"" (regexp-* - (regexp-or rfc822/qtext-regexp std11-quoted-pair-regexp) + (regexp-or std11-qtext-regexp std11-quoted-pair-regexp) ) "\"")) -- 1.7.10.4