;; Maintainer: MORIOKA Tomohiko <morioka@jaist.ac.jp>
;; Created: 1994/08/21 renamed from mime.el
;; Renamed: 1997/2/21 from tm-edit.el
-;; Version: $Revision: 0.86 $
+;; Version: $Revision: 0.87 $
;; Keywords: MIME, multimedia, multilingual, mail, news
;; This file is part of SEMI (SEMI is Emacs MIME Interfaces).
;;;
(defconst mime-edit-RCS-ID
- "$Id: mime-edit.el,v 0.86 1997-07-24 15:59:25 morioka Exp $")
+ "$Id: mime-edit.el,v 0.87 1997-09-03 04:53:10 morioka Exp $")
(defconst mime-edit-version `,(get-version-string mime-edit-RCS-ID))
(defun mime-edit-decode-buffer (not-decode-text)
(save-excursion
(goto-char (point-min))
- (let ((ctl (mime/Content-Type)))
+ (let ((ctl (mime-read-Content-Type)))
(if ctl
(let ((ctype (car ctl))
(params (cdr ctl))
;; Copyright (C) 1994,1995,1996,1997 Free Software Foundation, Inc.
;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
-;; Version: $Id: mime-parse.el,v 0.15 1997-09-03 04:40:04 morioka Exp $
+;; Version: $Id: mime-parse.el,v 0.16 1997-09-03 04:53:13 morioka Exp $
;; Keywords: parse, MIME, multimedia, mail, news
;; This file is part of SEMI (SEMI is Emacs MIME Interfaces).
;;; @ field reader
;;;
-(defun mime/Content-Type ()
+(defun mime-read-Content-Type ()
"Read field-body of Content-Type field from current-buffer,
-and return parsed it. [mime-parse.el]"
+and return parsed it."
(let ((str (std11-field-body "Content-Type")))
(if str
(mime-parse-Content-Type str)
(defun mime-parse-message (&optional ctl encoding rcnum)
"Parse current-buffer as a MIME message. [mime-parse.el]"
- (setq ctl (or (mime/Content-Type) ctl))
+ (setq ctl (or (mime-read-Content-Type) ctl))
(setq encoding (or (mime/Content-Transfer-Encoding) encoding))
(let ((ctype (car ctl))
(params (cdr ctl))