From xemacs-m  Fri Jun 20 09:44:05 1997
Received: from elc1.dina.kvl.dk (elc1.dina.kvl.dk [130.225.40.228])
	by xemacs.org (8.8.5/8.8.5) with SMTP id JAA03625
	for <xemacs-beta@xemacs.org>; Fri, 20 Jun 1997 09:44:04 -0500 (CDT)
Received: from zuse.dina.kvl.dk (zuse.dina.kvl.dk [130.225.40.245]) by elc1.dina.kvl.dk (8.6.12/8.6.4) with ESMTP id QAA07497; Fri, 20 Jun 1997 16:41:51 +0200
Received: (abraham@localhost) by zuse.dina.kvl.dk (8.6.12/8.6.4) id QAA06433; Fri, 20 Jun 1997 16:44:03 +0200
To: Kyle Jones <kyle_jones@wonderworks.com>
Cc: xemacs-beta@xemacs.org
Subject: Re: Oh, the *OTHER* think I don't understand about Customize...
References: <199706191557.LAA17100@black-ice.cc.vt.edu> <QQcurc15361.199706192310@crystal.WonderWorks.COM>
Organization: The Church of Emacs
X-Face: +kRV2]2q}lixHkE{U)mY#+6]{AH=yN~S9@IFiOa@X6?GM<U{B+4e{k79.Ya{~':DblFPCg$
 @60,BfLv2@SKZ19cMWK0/C'v;tM:|6B'R}U1rp6CL&kN({9<zF/V{:JCg27yC)9oZjeqcQawzKfiNL
 t9}`vjmK["dRQC/qGFQq"%u|Q`:6{"Rz}b(dnl_"3$Jtqimi>|8MBp/
From: Per Abrahamsen <abraham@dina.kvl.dk>
Date: 20 Jun 1997 16:44:03 +0200
In-Reply-To: Kyle Jones's message of "Thu, 19 Jun 1997 19:10:37 -0400 (EDT)"
Message-ID: <rjg1udibbg.fsf@zuse.dina.kvl.dk>
Lines: 19
X-Mailer: Gnus v5.4.56/Emacs 19.34
Mime-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit


Kyle Jones <kyle_jones@wonderworks.com> writes:

> It's a minor mode.  M-x balloon-help-mode.

There should be a defcustom for each global minor mode.  They should
look something like (untested code):

(defcustom balloon-help-mode nil
  "Minor mode for balloon help.
When enabled, automatically show help for the item at the mouse
pointer in a separate frame. 
You must modify via \\[customize] for this variable to have an effect."
  :set (lambda (symbol value)
	 (balloon-help-mode (if value 1 -1)))
  :type 'boolean
  :group 'balloon-help
  :require 'balloon-help)

