;; Copyright (C) 1995,1996,1997 Free Software Foundation, Inc.
;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
-;; Version: $Id: mime-def.el,v 0.20 1997-02-26 04:19:56 tmorioka Exp $
+;; Version: $Id: mime-def.el,v 0.21 1997-02-26 04:26:48 tmorioka Exp $
;; Keywords: definition, MIME, multimedia, mail, news
;; This file is part of SEMI (SEMI is Emacs MIME Interfaces).
;;;
(defvar mime-button-face 'bold
- "Face used for content-button or URL-button of MIME-Preview buffer.
-\[mime-def.el]")
+ "Face used for content-button or URL-button of MIME-Preview buffer.")
(defvar mime-button-mouse-face 'highlight
- "Face used for MIME-preview buffer mouse highlighting. [mime-def.el]")
+ "Face used for MIME-preview buffer mouse highlighting.")
(defun tm:add-button (from to func &optional data)
"Create a button between FROM and TO with callback FUNC and data DATA."
))
)
-(defvar tm:mother-button-dispatcher nil)
+(defvar mime-button-mother-dispatcher nil)
(defun tm:button-dispatcher (event)
"Select the button under point."
(goto-char point)
(if func
(apply func data)
- (if (fboundp tm:mother-button-dispatcher)
- (funcall tm:mother-button-dispatcher event)
+ (if (fboundp mime-button-mother-dispatcher)
+ (funcall mime-button-mother-dispatcher event)
)
))))