diff options
| author | Richard M. Stallman | 2005-12-16 02:06:54 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2005-12-16 02:06:54 +0000 |
| commit | 1e812158984f636c0c611a9efada416a2efb9d38 (patch) | |
| tree | 2230f5cedb238346b96abed3ee9aacf9f97daa0e | |
| parent | 6c76000bb362bec90b11517846bab6ec92512085 (diff) | |
| download | emacs-1e812158984f636c0c611a9efada416a2efb9d38.tar.gz emacs-1e812158984f636c0c611a9efada416a2efb9d38.zip | |
Delete defcustom variable :tag names.
| -rw-r--r-- | lisp/tooltip.el | 8 |
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." | |||
| 71 | 71 | ||
| 72 | (defcustom tooltip-delay 0.7 | 72 | (defcustom tooltip-delay 0.7 |
| 73 | "Seconds to wait before displaying a tooltip the first time." | 73 | "Seconds to wait before displaying a tooltip the first time." |
| 74 | :tag "Delay" | ||
| 75 | :type 'number | 74 | :type 'number |
| 76 | :group 'tooltip) | 75 | :group 'tooltip) |
| 77 | 76 | ||
| 78 | (defcustom tooltip-short-delay 0.1 | 77 | (defcustom tooltip-short-delay 0.1 |
| 79 | "Seconds to wait between subsequent tooltips on different items." | 78 | "Seconds to wait between subsequent tooltips on different items." |
| 80 | :tag "Short delay" | ||
| 81 | :type 'number | 79 | :type 'number |
| 82 | :group 'tooltip) | 80 | :group 'tooltip) |
| 83 | 81 | ||
| 84 | (defcustom tooltip-recent-seconds 1 | 82 | (defcustom tooltip-recent-seconds 1 |
| 85 | "Display tooltips if changing tip items within this many seconds. | 83 | "Display tooltips if changing tip items within this many seconds. |
| 86 | Do so after `tooltip-short-delay'." | 84 | Do so after `tooltip-short-delay'." |
| 87 | :tag "Recent seconds" | ||
| 88 | :type 'number | 85 | :type 'number |
| 89 | :group 'tooltip) | 86 | :group 'tooltip) |
| 90 | 87 | ||
| 91 | (defcustom tooltip-hide-delay 10 | 88 | (defcustom tooltip-hide-delay 10 |
| 92 | "Hide tooltips automatically after this many seconds." | 89 | "Hide tooltips automatically after this many seconds." |
| 93 | :tag "Hide delay" | ||
| 94 | :type 'number | 90 | :type 'number |
| 95 | :group 'tooltip) | 91 | :group 'tooltip) |
| 96 | 92 | ||
| @@ -102,7 +98,6 @@ when it pops up. | |||
| 102 | 98 | ||
| 103 | If `tooltip-frame-parameters' includes the `left' parameter, | 99 | If `tooltip-frame-parameters' includes the `left' parameter, |
| 104 | the value of `tooltip-x-offset' is ignored." | 100 | the value of `tooltip-x-offset' is ignored." |
| 105 | :tag "X offset" | ||
| 106 | :type 'integer | 101 | :type 'integer |
| 107 | :group 'tooltip) | 102 | :group 'tooltip) |
| 108 | 103 | ||
| @@ -114,7 +109,6 @@ when it pops up. | |||
| 114 | 109 | ||
| 115 | If `tooltip-frame-parameters' includes the `top' parameter, | 110 | If `tooltip-frame-parameters' includes the `top' parameter, |
| 116 | the value of `tooltip-y-offset' is ignored." | 111 | the value of `tooltip-y-offset' is ignored." |
| 117 | :tag "Y offset" | ||
| 118 | :type 'integer | 112 | :type 'integer |
| 119 | :group 'tooltip) | 113 | :group 'tooltip) |
| 120 | 114 | ||
| @@ -127,7 +121,6 @@ the value of `tooltip-y-offset' is ignored." | |||
| 127 | If `left' or `top' parameters are included, they specify the absolute | 121 | If `left' or `top' parameters are included, they specify the absolute |
| 128 | position to pop up the tooltip." | 122 | position to pop up the tooltip." |
| 129 | :type 'sexp | 123 | :type 'sexp |
| 130 | :tag "Frame Parameters" | ||
| 131 | :group 'tooltip) | 124 | :group 'tooltip) |
| 132 | 125 | ||
| 133 | (defface tooltip | 126 | (defface tooltip |
| @@ -144,7 +137,6 @@ position to pop up the tooltip." | |||
| 144 | (defcustom tooltip-use-echo-area nil | 137 | (defcustom tooltip-use-echo-area nil |
| 145 | "Use the echo area instead of tooltip frames for help and GUD tooltips." | 138 | "Use the echo area instead of tooltip frames for help and GUD tooltips." |
| 146 | :type 'boolean | 139 | :type 'boolean |
| 147 | :tag "Use echo area" | ||
| 148 | :group 'tooltip) | 140 | :group 'tooltip) |
| 149 | 141 | ||
| 150 | 142 | ||