diff options
| author | Stefan Monnier | 2012-10-28 10:56:51 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2012-10-28 10:56:51 -0400 |
| commit | 70edffb13005de4aa58ba818559b85aa63a1cdd4 (patch) | |
| tree | f25322a5427af78d2f055a50cc008bb124eeaba5 /doc | |
| parent | 3a51f0eb4168885b869641e9d5c98e3f40e5a515 (diff) | |
| download | emacs-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/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/lispref/keymaps.texi | 5 |
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 @@ | |||
| 1 | 2012-10-28 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * keymaps.texi (Format of Keymaps): Document the multiple | ||
| 4 | inheritance format. | ||
| 5 | |||
| 1 | 2012-10-28 Martin Rudalics <rudalics@gmx.at> | 6 | 2012-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 | |||
| 210 | have a string as an element. This is called the @dfn{overall prompt | 210 | have a string as an element. This is called the @dfn{overall prompt |
| 211 | string} and makes it possible to use the keymap as a menu. | 211 | string} and makes it possible to use the keymap as a menu. |
| 212 | @xref{Defining Menus}. | 212 | @xref{Defining Menus}. |
| 213 | |||
| 214 | @item (keymap @dots{}) | ||
| 215 | If an element of a keymap is itself a keymap, it counts as if this inner keymap | ||
| 216 | were inlined in the outer keymap. This is used for multiple-inheritance, such | ||
| 217 | as in @code{make-composed-keymap}. | ||
| 213 | @end table | 218 | @end table |
| 214 | 219 | ||
| 215 | When the binding is @code{nil}, it doesn't constitute a definition | 220 | When the binding is @code{nil}, it doesn't constitute a definition |