diff options
| author | Eli Zaretskii | 2006-07-08 18:07:32 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2006-07-08 18:07:32 +0000 |
| commit | cdbd783c68ffbaf6c1c6df0e022a1e8058062d69 (patch) | |
| tree | 8c1e255ad5e3b4e4e4a918a434aef71baf382d89 | |
| parent | 8fab6dedbf0d2bd0f97ed8a4abeb717fac384b14 (diff) | |
| download | emacs-cdbd783c68ffbaf6c1c6df0e022a1e8058062d69.tar.gz emacs-cdbd783c68ffbaf6c1c6df0e022a1e8058062d69.zip | |
(Tool Bar): Remove @tindex.
| -rw-r--r-- | lispref/keymaps.texi | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/lispref/keymaps.texi b/lispref/keymaps.texi index ed03a1fc90d..38f7fbac77c 100644 --- a/lispref/keymaps.texi +++ b/lispref/keymaps.texi | |||
| @@ -2436,7 +2436,6 @@ accommodated conveniently, and the default bindings make this easy by | |||
| 2436 | using an indirection through @code{tool-bar-map}. | 2436 | using an indirection through @code{tool-bar-map}. |
| 2437 | 2437 | ||
| 2438 | @defvar tool-bar-map | 2438 | @defvar tool-bar-map |
| 2439 | @tindex tool-bar-map | ||
| 2440 | By default, the global map binds @code{[tool-bar]} as follows: | 2439 | By default, the global map binds @code{[tool-bar]} as follows: |
| 2441 | @example | 2440 | @example |
| 2442 | (global-set-key [tool-bar] | 2441 | (global-set-key [tool-bar] |
| @@ -2456,7 +2455,6 @@ There are two convenience functions for defining tool bar items, as | |||
| 2456 | follows. | 2455 | follows. |
| 2457 | 2456 | ||
| 2458 | @defun tool-bar-add-item icon def key &rest props | 2457 | @defun tool-bar-add-item icon def key &rest props |
| 2459 | @tindex tool-bar-add-item | ||
| 2460 | This function adds an item to the tool bar by modifying | 2458 | This function adds an item to the tool bar by modifying |
| 2461 | @code{tool-bar-map}. The image to use is defined by @var{icon}, which | 2459 | @code{tool-bar-map}. The image to use is defined by @var{icon}, which |
| 2462 | is the base name of an XPM, XBM or PBM image file to be located by | 2460 | is the base name of an XPM, XBM or PBM image file to be located by |
| @@ -2480,7 +2478,6 @@ To define items in some local map, bind @code{tool-bar-map} with | |||
| 2480 | @end defun | 2478 | @end defun |
| 2481 | 2479 | ||
| 2482 | @defun tool-bar-add-item-from-menu command icon &optional map &rest props | 2480 | @defun tool-bar-add-item-from-menu command icon &optional map &rest props |
| 2483 | @tindex tool-bar-add-item-from-menu | ||
| 2484 | This function is a convenience for defining tool bar items which are | 2481 | This function is a convenience for defining tool bar items which are |
| 2485 | consistent with existing menu bar bindings. The binding of | 2482 | consistent with existing menu bar bindings. The binding of |
| 2486 | @var{command} is looked up in the menu bar in @var{map} (default | 2483 | @var{command} is looked up in the menu bar in @var{map} (default |
| @@ -2503,32 +2500,27 @@ specifies the local map to make the definition in. The argument | |||
| 2503 | @code{tool-bar-add-item-from-menu}. | 2500 | @code{tool-bar-add-item-from-menu}. |
| 2504 | @end defun | 2501 | @end defun |
| 2505 | 2502 | ||
| 2506 | @tindex auto-resize-tool-bar | ||
| 2507 | @defvar auto-resize-tool-bar | 2503 | @defvar auto-resize-tool-bar |
| 2508 | If this variable is non-@code{nil}, the tool bar automatically resizes to | 2504 | If this variable is non-@code{nil}, the tool bar automatically resizes to |
| 2509 | show all defined tool bar items---but not larger than a quarter of the | 2505 | show all defined tool bar items---but not larger than a quarter of the |
| 2510 | frame's height. | 2506 | frame's height. |
| 2511 | @end defvar | 2507 | @end defvar |
| 2512 | 2508 | ||
| 2513 | @tindex auto-raise-tool-bar-buttons | ||
| 2514 | @defvar auto-raise-tool-bar-buttons | 2509 | @defvar auto-raise-tool-bar-buttons |
| 2515 | If this variable is non-@code{nil}, tool bar items display | 2510 | If this variable is non-@code{nil}, tool bar items display |
| 2516 | in raised form when the mouse moves over them. | 2511 | in raised form when the mouse moves over them. |
| 2517 | @end defvar | 2512 | @end defvar |
| 2518 | 2513 | ||
| 2519 | @tindex tool-bar-button-margin | ||
| 2520 | @defvar tool-bar-button-margin | 2514 | @defvar tool-bar-button-margin |
| 2521 | This variable specifies an extra margin to add around tool bar items. | 2515 | This variable specifies an extra margin to add around tool bar items. |
| 2522 | The value is an integer, a number of pixels. The default is 4. | 2516 | The value is an integer, a number of pixels. The default is 4. |
| 2523 | @end defvar | 2517 | @end defvar |
| 2524 | 2518 | ||
| 2525 | @tindex tool-bar-button-relief | ||
| 2526 | @defvar tool-bar-button-relief | 2519 | @defvar tool-bar-button-relief |
| 2527 | This variable specifies the shadow width for tool bar items. | 2520 | This variable specifies the shadow width for tool bar items. |
| 2528 | The value is an integer, a number of pixels. The default is 1. | 2521 | The value is an integer, a number of pixels. The default is 1. |
| 2529 | @end defvar | 2522 | @end defvar |
| 2530 | 2523 | ||
| 2531 | @tindex tool-bar-border | ||
| 2532 | @defvar tool-bar-border | 2524 | @defvar tool-bar-border |
| 2533 | This variable specifies the height of the border drawn below the tool | 2525 | This variable specifies the height of the border drawn below the tool |
| 2534 | bar area. An integer value specifies height as a number of pixels. | 2526 | bar area. An integer value specifies height as a number of pixels. |