diff options
| author | Jared Finder | 2025-02-06 14:32:00 -0800 |
|---|---|---|
| committer | Eli Zaretskii | 2025-02-08 13:14:25 +0200 |
| commit | b023d43ee7908d805a6776f18d1a94b213a021e3 (patch) | |
| tree | aea3acbb7a1847419dfbb9368593c2e58c0e3d3b | |
| parent | 72bbbff7e8128fe14c0b69c7282667788758b8b4 (diff) | |
| download | emacs-b023d43ee7908d805a6776f18d1a94b213a021e3.tar.gz emacs-b023d43ee7908d805a6776f18d1a94b213a021e3.zip | |
Cleanup tool-bar-mode documentation
* doc/emacs/frames.texi (Tool Bars): Downcase concept index
text.
* lisp/cus-start.el (standard): Copy custom :tag strings
from window-tool-bar-style's, which are more descriptive.
(Bug#75844)
| -rw-r--r-- | doc/emacs/frames.texi | 6 | ||||
| -rw-r--r-- | lisp/cus-start.el | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/doc/emacs/frames.texi b/doc/emacs/frames.texi index e0d8a607072..9992c39dcc9 100644 --- a/doc/emacs/frames.texi +++ b/doc/emacs/frames.texi | |||
| @@ -1296,7 +1296,7 @@ menus' visual appearance. | |||
| 1296 | @section Tool Bars | 1296 | @section Tool Bars |
| 1297 | @cindex tool bar mode | 1297 | @cindex tool bar mode |
| 1298 | @cindex tool bar, attached to frame | 1298 | @cindex tool bar, attached to frame |
| 1299 | @cindex mode, Tool Bar | 1299 | @cindex mode, tool bar |
| 1300 | @cindex icons, toolbar | 1300 | @cindex icons, toolbar |
| 1301 | 1301 | ||
| 1302 | On graphical displays, Emacs puts a @dfn{tool bar} at the top of each | 1302 | On graphical displays, Emacs puts a @dfn{tool bar} at the top of each |
| @@ -1320,14 +1320,14 @@ control the use of tool bars at startup, customize the variable | |||
| 1320 | @code{tool-bar-mode}. | 1320 | @code{tool-bar-mode}. |
| 1321 | 1321 | ||
| 1322 | @vindex tool-bar-style | 1322 | @vindex tool-bar-style |
| 1323 | @cindex Tool Bar style | 1323 | @cindex tool bar style |
| 1324 | When Emacs is compiled with GTK+ support, each tool bar item can | 1324 | When Emacs is compiled with GTK+ support, each tool bar item can |
| 1325 | consist of an image, or a text label, or both. By default, Emacs | 1325 | consist of an image, or a text label, or both. By default, Emacs |
| 1326 | follows the Gnome desktop's tool bar style setting; if none is | 1326 | follows the Gnome desktop's tool bar style setting; if none is |
| 1327 | defined, it displays tool bar items as just images. To impose a | 1327 | defined, it displays tool bar items as just images. To impose a |
| 1328 | specific tool bar style, customize the variable @code{tool-bar-style}. | 1328 | specific tool bar style, customize the variable @code{tool-bar-style}. |
| 1329 | 1329 | ||
| 1330 | @cindex Tool Bar position | 1330 | @cindex tool bar position |
| 1331 | You can also control the placement of the tool bar for the GTK+ tool | 1331 | You can also control the placement of the tool bar for the GTK+ tool |
| 1332 | bar with the frame parameter @code{tool-bar-position}. @xref{Frame | 1332 | bar with the frame parameter @code{tool-bar-position}. @xref{Frame |
| 1333 | Parameters,,, elisp, The Emacs Lisp Reference Manual}. | 1333 | Parameters,,, elisp, The Emacs Lisp Reference Manual}. |
diff --git a/lisp/cus-start.el b/lisp/cus-start.el index 0f7d7c3c020..5d35edd212b 100644 --- a/lisp/cus-start.el +++ b/lisp/cus-start.el | |||
| @@ -698,9 +698,9 @@ since it could result in memory overflow and make Emacs crash." | |||
| 698 | frames (choice | 698 | frames (choice |
| 699 | (const :tag "Images" :value image) | 699 | (const :tag "Images" :value image) |
| 700 | (const :tag "Text" :value text) | 700 | (const :tag "Text" :value text) |
| 701 | (const :tag "Both" :value both) | 701 | (const :tag "Both, text below image" :value both) |
| 702 | (const :tag "Both-horiz" :value both-horiz) | 702 | (const :tag "Both, text to right of image" :value both-horiz) |
| 703 | (const :tag "Text-image-horiz" :value text-image-horiz) | 703 | (const :tag "Both, text to left of image" :value text-image-horiz) |
| 704 | (const :tag "System default" :value nil)) "24.1") | 704 | (const :tag "System default" :value nil)) "24.1") |
| 705 | (tool-bar-max-label-size frames integer "24.1") | 705 | (tool-bar-max-label-size frames integer "24.1") |
| 706 | (tab-bar-position | 706 | (tab-bar-position |