From 5897c38bfe70de8732aa19458b8023a80205b520 Mon Sep 17 00:00:00 2001 From: morioka Date: Thu, 28 May 1998 12:44:16 +0000 Subject: [PATCH] Rename 'rfc822/quoted-string-regexp -> 'std11-quoted-string-regexp. --- mime-parse.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mime-parse.el b/mime-parse.el index 9127bda..2753487 100644 --- a/mime-parse.el +++ b/mime-parse.el @@ -41,7 +41,7 @@ (defconst std11-quoted-pair-regexp "\\\\.") (defconst std11-qtext-regexp (concat "[^" (char-list-to-string std11-non-qtext-char-list) "]")) -(defconst rfc822/quoted-string-regexp +(defconst std11-quoted-string-regexp (concat "\"" (regexp-* (regexp-or std11-qtext-regexp std11-quoted-pair-regexp) @@ -50,7 +50,7 @@ (defconst mime/content-parameter-value-regexp (concat "\\(" - rfc822/quoted-string-regexp + std11-quoted-string-regexp "\\|[^; \t\n]*\\)")) (defconst mime::parameter-regexp -- 1.7.10.4