summaryrefslogtreecommitdiff
path: root/lisp/tooltip.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2005-12-16 02:06:54 +0000
committerRichard M. Stallman <rms@gnu.org>2005-12-16 02:06:54 +0000
commit1e812158984f636c0c611a9efada416a2efb9d38 (patch)
tree2230f5cedb238346b96abed3ee9aacf9f97daa0e /lisp/tooltip.el
parent6c76000bb362bec90b11517846bab6ec92512085 (diff)
downloademacs-1e812158984f636c0c611a9efada416a2efb9d38.tar.gz
Delete defcustom variable :tag names.
Diffstat (limited to 'lisp/tooltip.el')
-rw-r--r--lisp/tooltip.el8
1 files changed, 0 insertions, 8 deletions
diff --git a/lisp/tooltip.el b/lisp/tooltip.el
index 20588f0deac..8f609601822 100644
--- a/lisp/tooltip.el
+++ b/lisp/tooltip.el
@@ -71,26 +71,22 @@ With ARG, turn tooltip mode on if and only if ARG is positive."
(defcustom tooltip-delay 0.7
"Seconds to wait before displaying a tooltip the first time."
- :tag "Delay"
:type 'number
:group 'tooltip)
(defcustom tooltip-short-delay 0.1
"Seconds to wait between subsequent tooltips on different items."
- :tag "Short delay"
:type 'number
:group 'tooltip)
(defcustom tooltip-recent-seconds 1
"Display tooltips if changing tip items within this many seconds.
Do so after `tooltip-short-delay'."
- :tag "Recent seconds"
:type 'number
:group 'tooltip)
(defcustom tooltip-hide-delay 10
"Hide tooltips automatically after this many seconds."
- :tag "Hide delay"
:type 'number
:group 'tooltip)
@@ -102,7 +98,6 @@ when it pops up.
If `tooltip-frame-parameters' includes the `left' parameter,
the value of `tooltip-x-offset' is ignored."
- :tag "X offset"
:type 'integer
:group 'tooltip)
@@ -114,7 +109,6 @@ when it pops up.
If `tooltip-frame-parameters' includes the `top' parameter,
the value of `tooltip-y-offset' is ignored."
- :tag "Y offset"
:type 'integer
:group 'tooltip)
@@ -127,7 +121,6 @@ the value of `tooltip-y-offset' is ignored."
If `left' or `top' parameters are included, they specify the absolute
position to pop up the tooltip."
:type 'sexp
- :tag "Frame Parameters"
:group 'tooltip)
(defface tooltip
@@ -144,7 +137,6 @@ position to pop up the tooltip."
(defcustom tooltip-use-echo-area nil
"Use the echo area instead of tooltip frames for help and GUD tooltips."
:type 'boolean
- :tag "Use echo area"
:group 'tooltip)