aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2001-01-31 13:23:12 +0000
committerEli Zaretskii2001-01-31 13:23:12 +0000
commitcb4aae0475a5207011fde16cda1bf332843d2eb4 (patch)
tree6cc681bd1ff7a3aa3341fa994e193d8b6dbce408
parentce070307f0bd0936d0c077a932c574184d78ef7c (diff)
downloademacs-cb4aae0475a5207011fde16cda1bf332843d2eb4.tar.gz
emacs-cb4aae0475a5207011fde16cda1bf332843d2eb4.zip
(tool-bar-add-item): Doc fix.
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/toolbar/tool-bar.el6
2 files changed, 5 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 12ac83077d6..122822bac14 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
12001-01-31 Eli Zaretskii <eliz@is.elta.co.il> 12001-01-31 Eli Zaretskii <eliz@is.elta.co.il>
2 2
3 * toolbar/tool-bar.el (tool-bar-add-item): Doc fix.
4
3 * emacs-lisp/re-builder.el (reb-update-modestring): Don't use 5 * emacs-lisp/re-builder.el (reb-update-modestring): Don't use
4 concat for integers. From Juanma Barranquero <lektu@uol.com.br>. 6 concat for integers. From Juanma Barranquero <lektu@uol.com.br>.
5 7
diff --git a/lisp/toolbar/tool-bar.el b/lisp/toolbar/tool-bar.el
index 4cfff846f8a..64fcf09e644 100644
--- a/lisp/toolbar/tool-bar.el
+++ b/lisp/toolbar/tool-bar.el
@@ -82,9 +82,9 @@ for the fake function key in the menu keymap. Remaining arguments
82PROPS are additional items to add to the menu item specification. See 82PROPS are additional items to add to the menu item specification. See
83Info node `(elisp)Tool Bar'. Items are added from left to right. 83Info node `(elisp)Tool Bar'. Items are added from left to right.
84 84
85ICON is the base name of a file cnntaining the image to use. The 85ICON is the base name of a file containing the image to use. The
86function will try to use first ICON.xpm, ICON.pbm then ICON.xbm using 86function will first try to use ICON.xpm, then ICON.pbm, and finally
87`find-image'. 87ICON.xbm, using `find-image'.
88 88
89Keybindings are made in the map `tool-bar-map'. To define items in 89Keybindings are made in the map `tool-bar-map'. To define items in
90some local map, bind `tool-bar-map' with `let' around calls of this 90some local map, bind `tool-bar-map' with `let' around calls of this