;; Copyright (C) 1995,1996,1997 Free Software Foundation, Inc.
;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
-;; Version: $Id: mime-def.el,v 0.25 1997-02-26 07:44:22 tmorioka Exp $
+;; Version: $Id: mime-def.el,v 0.26 1997-02-27 06:33:44 tmorioka Exp $
;; Keywords: definition, MIME, multimedia, mail, news
;; This file is part of SEMI (SEMI is Emacs MIME Interfaces).
(defvar mime-button-mouse-face 'highlight
"Face used for MIME-preview buffer mouse highlighting.")
-(defun tm:add-button (from to func &optional data)
+(defun mime-add-button (from to func &optional data)
"Create a button between FROM and TO with callback FUNC and data DATA."
(and mime-button-face
(overlay-put (make-overlay from to) 'face mime-button-face))
;; Created: 1994/7/13
;; Renamed: 1994/8/31 from tm-body.el
;; Renamed: 1997/02/19 from tm-view.el
-;; Version: $Revision: 0.18 $
+;; Version: $Revision: 0.19 $
;; Keywords: MIME, multimedia, mail, news
;; This file is part of SEMI (SEMI is Emacs MIME Interfaces).
;;;
(defconst mime-view-RCS-ID
- "$Id: mime-view.el,v 0.18 1997-02-26 04:32:23 tmorioka Exp $")
+ "$Id: mime-view.el,v 0.19 1997-02-27 06:37:53 tmorioka Exp $")
(defconst mime-view-version (get-version-string mime-view-RCS-ID))
)
(insert rest)
))))
- (tm:add-button (point-min)(1- (point-max))
- (function mime-view-play-content))
+ (mime-add-button (point-min)(1- (point-max))
+ (function mime-view-play-content))
))
(defun mime-preview/default-content-button-function
(let ((be (point-max)))
(narrow-to-region be be)
(insert mime-view-announcement-for-message/partial)
- (tm:add-button (point-min)(point-max)
- (function mime-view-play-content))
+ (mime-add-button (point-min)(point-max)
+ (function mime-view-play-content))
)))
(defun mime-article/get-uu-filename (param &optional encoding)