aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2006-04-18 21:23:12 +0000
committerRichard M. Stallman2006-04-18 21:23:12 +0000
commit42cc79e684548e45d17038be38aded09b889b25a (patch)
tree4d6bb646d44547a3d02e5e0ad31a03d7555bc20a
parent98639288c8eaff279787d862490fd136fc1ec284 (diff)
downloademacs-42cc79e684548e45d17038be38aded09b889b25a.tar.gz
emacs-42cc79e684548e45d17038be38aded09b889b25a.zip
(tooltip-mode, tooltip-use-echo-area): Doc fixes.
-rw-r--r--lisp/tooltip.el16
1 files changed, 11 insertions, 5 deletions
diff --git a/lisp/tooltip.el b/lisp/tooltip.el
index 8dc811c09e6..cacd6f59670 100644
--- a/lisp/tooltip.el
+++ b/lisp/tooltip.el
@@ -47,11 +47,15 @@
47;; would be accompanied by a full redisplay. 47;; would be accompanied by a full redisplay.
48 48
49(define-minor-mode tooltip-mode 49(define-minor-mode tooltip-mode
50 "Toggle Tooltip display. 50 "Toggle Tooltip mode.
51With ARG, turn tooltip mode on if and only if ARG is positive. 51With ARG, turn Tooltip mode on if and only if ARG is positive.
52When this minor mode is enabled, Emacs displays help text 52When this minor mode is enabled, Emacs displays help text
53in a pop-up window on mouse-over. When it is disabled, 53in a pop-up window for buttons and menu items that you put the mouse on.
54Emacs displays the help text in the echo area instead." 54\(However, if `tooltip-use-echo-area' is non-nil, this and
55all pop-up help appears in the echo area.)
56
57When Tooltip mode is disabled, Emacs displays one line of
58the help text in the echo area, and does not make a pop-up window."
55 :global t 59 :global t
56 :init-value (not (or noninteractive 60 :init-value (not (or noninteractive
57 emacs-basic-display 61 emacs-basic-display
@@ -142,7 +146,9 @@ position to pop up the tooltip."
142 :group 'basic-faces) 146 :group 'basic-faces)
143 147
144(defcustom tooltip-use-echo-area nil 148(defcustom tooltip-use-echo-area nil
145 "Use the echo area instead of tooltip frames for help and GUD tooltips." 149 "Use the echo area instead of tooltip frames for help and GUD tooltips.
150To display multi-line help text in the echo area, set this to t
151and enable `tooltip-mode'."
146 :type 'boolean 152 :type 'boolean
147 :group 'tooltip) 153 :group 'tooltip)
148 154