aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorStefan Monnier2012-10-28 10:56:51 -0400
committerStefan Monnier2012-10-28 10:56:51 -0400
commit70edffb13005de4aa58ba818559b85aa63a1cdd4 (patch)
treef25322a5427af78d2f055a50cc008bb124eeaba5 /doc
parent3a51f0eb4168885b869641e9d5c98e3f40e5a515 (diff)
downloademacs-70edffb13005de4aa58ba818559b85aa63a1cdd4.tar.gz
emacs-70edffb13005de4aa58ba818559b85aa63a1cdd4.zip
* lisp/tmm.el (tmm-prompt): Use map-keymap.
* doc/lispref/keymaps.texi (Format of Keymaps): Document the multiple inheritance format. Fixes: debbugs:12744
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/ChangeLog5
-rw-r--r--doc/lispref/keymaps.texi5
2 files changed, 10 insertions, 0 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index fe12e27a070..6b3febba631 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,8 @@
12012-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * keymaps.texi (Format of Keymaps): Document the multiple
4 inheritance format.
5
12012-10-28 Martin Rudalics <rudalics@gmx.at> 62012-10-28 Martin Rudalics <rudalics@gmx.at>
2 7
3 * windows.texi (Basic Windows): Reformulate description of live, 8 * windows.texi (Basic Windows): Reformulate description of live,
diff --git a/doc/lispref/keymaps.texi b/doc/lispref/keymaps.texi
index 8fe729d50f2..f658f7e66fb 100644
--- a/doc/lispref/keymaps.texi
+++ b/doc/lispref/keymaps.texi
@@ -210,6 +210,11 @@ Aside from elements that specify bindings for keys, a keymap can also
210have a string as an element. This is called the @dfn{overall prompt 210have a string as an element. This is called the @dfn{overall prompt
211string} and makes it possible to use the keymap as a menu. 211string} and makes it possible to use the keymap as a menu.
212@xref{Defining Menus}. 212@xref{Defining Menus}.
213
214@item (keymap @dots{})
215If an element of a keymap is itself a keymap, it counts as if this inner keymap
216were inlined in the outer keymap. This is used for multiple-inheritance, such
217as in @code{make-composed-keymap}.
213@end table 218@end table
214 219
215When the binding is @code{nil}, it doesn't constitute a definition 220When the binding is @code{nil}, it doesn't constitute a definition