`mime/disposition-type-regexp' -> `mime-disposition-type-regexp'.
authormorioka <morioka>
Mon, 7 Jul 1997 17:01:51 +0000 (17:01 +0000)
committermorioka <morioka>
Mon, 7 Jul 1997 17:01:51 +0000 (17:01 +0000)
mime-def.el
mime-parse.el

index 9a6feb7..d069d1c 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.57 1997-07-03 11:57:44 morioka Exp $
+;; Version: $Id: mime-def.el,v 0.58 1997-07-07 17:01:49 morioka Exp $
 ;; Keywords: definition, MIME, multimedia, mail, news
 
 ;; This file is part of SEMI (SEMI is Emacs MIME Interfaces).
@@ -28,7 +28,7 @@
 (require 'cl)
 (require 'emu)
 
-(defconst semi-version-name "Kaga-Ichinomiya")
+(defconst semi-version-name "Naka-Tsurugi")
 
 (autoload 'mule-caesar-region "mule-caesar"
   "Caesar rotation of current region." t)
@@ -66,7 +66,7 @@
 (defconst mime-media-type/subtype-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
index 6bdb4d8..2826f04 100644 (file)
@@ -3,7 +3,7 @@
 ;; Copyright (C) 1994,1995,1996,1997 Free Software Foundation, Inc.
 
 ;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
-;; Version: $Id: mime-parse.el,v 0.10 1997-07-02 16:55:42 morioka Exp $
+;; Version: $Id: mime-parse.el,v 0.11 1997-07-07 17:01:51 morioka Exp $
 ;; Keywords: parse, MIME, multimedia, mail, news
 
 ;; This file is part of SEMI (SEMI is Emacs MIME Interfaces).
@@ -124,7 +124,7 @@ which are string or symbol."
        (cons ctype (nreverse dest))
        )))
 
-(defconst mime::dtype-regexp (concat "^" mime/disposition-type-regexp))
+(defconst mime::dtype-regexp (concat "^" mime-disposition-type-regexp))
 
 (defun mime-parse-Content-Disposition (string)
   "Parse STRING as field-body of Content-Disposition field."