From 2d6c5838a24c491b9e210c9a504e453abbce62dc Mon Sep 17 00:00:00 2001 From: morioka Date: Wed, 2 Jul 1997 16:43:26 +0000 Subject: [PATCH] `mime/token-regexp' -> `mime-token-regexp'. --- mailcap.el | 4 ++-- mime-def.el | 10 +++++----- mime-parse.el | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/mailcap.el b/mailcap.el index c39f76e..266c564 100644 --- a/mailcap.el +++ b/mailcap.el @@ -4,7 +4,7 @@ ;; Author: MORIOKA Tomohiko ;; Created: 1997/6/27 -;; Version: $Id: mailcap.el,v 0.0 1997-06-27 10:15:46 morioka Exp $ +;; Version: $Id: mailcap.el,v 0.1 1997-07-02 16:43:23 morioka Exp $ ;; Keywords: mailcap, setting, configuration, MIME, multimedia ;; This file is part of SEMI (SEMI is Emacs MIME Interfaces). @@ -41,7 +41,7 @@ ;;; (defsubst mailcap-look-at-token () - (if (looking-at mime/token-regexp) + (if (looking-at mime-token-regexp) (let ((beg (match-beginning 0)) (end (match-end 0))) (goto-char end) diff --git a/mime-def.el b/mime-def.el index e9b4760..679ac9e 100644 --- a/mime-def.el +++ b/mime-def.el @@ -3,7 +3,7 @@ ;; Copyright (C) 1995,1996,1997 Free Software Foundation, Inc. ;; Author: MORIOKA Tomohiko -;; Version: $Id: mime-def.el,v 0.54 1997-07-02 16:41:06 morioka Exp $ +;; Version: $Id: mime-def.el,v 0.55 1997-07-02 16:43:25 morioka Exp $ ;; Keywords: definition, MIME, multimedia, mail, news ;; This file is part of SEMI (SEMI is Emacs MIME Interfaces). @@ -58,13 +58,13 @@ ;;; (defconst mime-tspecials "][\000-\040()<>@,\;:\\\"/?.=") -(defconst mime/token-regexp (concat "[^" mime-tspecials "]+")) -(defconst mime-charset-regexp mime/token-regexp) +(defconst mime-token-regexp (concat "[^" mime-tspecials "]+")) +(defconst mime-charset-regexp mime-token-regexp) (defconst mime/content-type-subtype-regexp - (concat mime/token-regexp "/" mime/token-regexp)) + (concat mime-token-regexp "/" mime-token-regexp)) -(defconst mime/disposition-type-regexp mime/token-regexp) +(defconst mime/disposition-type-regexp mime-token-regexp) ;;; @ button diff --git a/mime-parse.el b/mime-parse.el index ebf5a63..dfe2ea9 100644 --- a/mime-parse.el +++ b/mime-parse.el @@ -3,7 +3,7 @@ ;; Copyright (C) 1994,1995,1996,1997 Free Software Foundation, Inc. ;; Author: MORIOKA Tomohiko -;; Version: $Id: mime-parse.el,v 0.8 1997-03-15 20:11:46 morioka Exp $ +;; Version: $Id: mime-parse.el,v 0.9 1997-07-02 16:43:26 morioka Exp $ ;; Keywords: parse, MIME, multimedia, mail, news ;; This file is part of SEMI (SEMI is Emacs MIME Interfaces). @@ -93,7 +93,7 @@ which are string or symbol." "\\|[^; \t\n]*\\)")) (defconst mime::parameter-regexp - (concat "^[ \t]*\;[ \t]*\\(" mime/token-regexp "\\)" + (concat "^[ \t]*\;[ \t]*\\(" mime-token-regexp "\\)" "[ \t]*=[ \t]*\\(" mime/content-parameter-value-regexp "\\)")) (defun mime-parse-parameter (str) -- 1.7.10.4