Constant `base64-token-regexp', `base64-token-padding-regexp' and
authortmorioka <tmorioka>
Mon, 24 Feb 1997 08:57:49 +0000 (08:57 +0000)
committertmorioka <tmorioka>
Mon, 24 Feb 1997 08:57:49 +0000 (08:57 +0000)
`eword-B-encoded-text-regexp' were moved to eword-decode.el.

mime-def.el

index fbb6da2..cc31e73 100644 (file)
@@ -3,7 +3,7 @@
 ;; Copyright (C) 1995,1996,1997 Free Software Foundation, Inc.
 
 ;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
-;; Version: $Id: mime-def.el,v 0.5 1997-02-24 08:54:44 tmorioka Exp $
+;; Version: $Id: mime-def.el,v 0.6 1997-02-24 08:57:49 tmorioka Exp $
 ;; Keywords: definition, MIME, multimedia, mail, news
 
 ;; This file is part of SEMI (SEMI is Emacs MIME Interfaces).
@@ -223,29 +223,6 @@ FUNCTION.")
 (defconst mime/disposition-type-regexp mime/token-regexp)
 
 
-;;; @@ Base64
-;;;
-
-(defconst base64-token-regexp "[A-Za-z0-9+/]")
-(defconst base64-token-padding-regexp "[A-Za-z0-9+/=]")
-
-(defconst eword-B-encoded-text-regexp
-  (concat "\\(\\("
-         base64-token-regexp
-         base64-token-regexp
-         base64-token-regexp
-         base64-token-regexp
-         "\\)*"
-         base64-token-regexp
-         base64-token-regexp
-         base64-token-padding-regexp
-         base64-token-padding-regexp
-          "\\)"))
-
-;; (defconst eword-B-encoding-and-encoded-text-regexp
-;;   (concat "\\(B\\)\\?" eword-B-encoded-text-regexp))
-
-
 ;;; @@ Quoted-Printable
 ;;;