From fd9ffa5774674e240b92873c2b5be209120dcef7 Mon Sep 17 00:00:00 2001 From: morioka Date: Mon, 4 May 1998 21:17:14 +0000 Subject: [PATCH] (quoted-printable-hex-chars): New constant. (quoted-printable-octet-regexp): New constant. --- mime-def.el | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/mime-def.el b/mime-def.el index 0f15195..600e9e3 100644 --- a/mime-def.el +++ b/mime-def.el @@ -25,7 +25,7 @@ ;;; Code: (defconst mime-spadework-module-version-string - "FLIM 1.0.2 - \"T-Dòji\" ")-A + "FLIM 1.0.2 - \"T-Dòji\"-A ") (require 'custom) @@ -71,6 +71,16 @@ (concat mime-token-regexp "/" mime-token-regexp)) +;;; @@ Quoted-Printable +;;; + +(defconst quoted-printable-hex-chars "0123456789ABCDEF") + +(defconst quoted-printable-octet-regexp + (concat "=[" quoted-printable-hex-chars + "][" quoted-printable-hex-chars "]")) + + ;;; @ end ;;; -- 1.7.10.4