From: tmorioka Date: Wed, 26 Feb 1997 04:26:48 +0000 (+0000) Subject: `tm:mother-button-dispatcher' -> `mime-button-mother-dispatcher'. X-Git-Tag: Hokutetsu-Ishikawa-new~272 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=a715a1d3e8cbf35f66ea5fc6e21f42068405d9b3;p=elisp%2Fsemi.git `tm:mother-button-dispatcher' -> `mime-button-mother-dispatcher'. --- diff --git a/mime-def.el b/mime-def.el index e29e23d..4036b31 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.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). @@ -57,11 +57,10 @@ ;;; (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." @@ -76,7 +75,7 @@ )) ) -(defvar tm:mother-button-dispatcher nil) +(defvar mime-button-mother-dispatcher nil) (defun tm:button-dispatcher (event) "Select the button under point." @@ -95,8 +94,8 @@ (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) ) ))))