`tm:mother-button-dispatcher' -> `mime-button-mother-dispatcher'.
authortmorioka <tmorioka>
Wed, 26 Feb 1997 04:26:48 +0000 (04:26 +0000)
committertmorioka <tmorioka>
Wed, 26 Feb 1997 04:26:48 +0000 (04:26 +0000)
mime-def.el

index e29e23d..4036b31 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.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."
@@ -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)
          )
        ))))