diff options
| author | Glenn Morris | 2013-02-08 21:36:39 -0500 |
|---|---|---|
| committer | Glenn Morris | 2013-02-08 21:36:39 -0500 |
| commit | dc55466e6766659999ea202c2f0158bf8b320f55 (patch) | |
| tree | b7a17c20d9b42842dd4ec86ab09ddaa5c582cf9f /doc/lispref/keymaps.texi | |
| parent | 6511485f2c4ec900c3496c398cbc5dadac0a97bd (diff) | |
| download | emacs-dc55466e6766659999ea202c2f0158bf8b320f55.tar.gz emacs-dc55466e6766659999ea202c2f0158bf8b320f55.zip | |
* doc/lispref/keymaps.texi (Creating Keymaps): Update make-keymap result.
Diffstat (limited to 'doc/lispref/keymaps.texi')
| -rw-r--r-- | doc/lispref/keymaps.texi | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/lispref/keymaps.texi b/doc/lispref/keymaps.texi index 7c66bbec801..54211d1aa0b 100644 --- a/doc/lispref/keymaps.texi +++ b/doc/lispref/keymaps.texi | |||
| @@ -327,10 +327,12 @@ these characters to @code{nil}, and does not bind any other kind of | |||
| 327 | event. The argument @var{prompt} specifies a | 327 | event. The argument @var{prompt} specifies a |
| 328 | prompt string, as in @code{make-sparse-keymap}. | 328 | prompt string, as in @code{make-sparse-keymap}. |
| 329 | 329 | ||
| 330 | @c This example seems kind of pointless, but I guess it serves | ||
| 331 | @c to contrast the result with make-sparse-keymap above. | ||
| 330 | @example | 332 | @example |
| 331 | @group | 333 | @group |
| 332 | (make-keymap) | 334 | (make-keymap) |
| 333 | @result{} (keymap #^[t nil nil nil @dots{} nil nil keymap]) | 335 | @result{} (keymap #^[nil nil keymap nil nil nil @dots{}]) |
| 334 | @end group | 336 | @end group |
| 335 | @end example | 337 | @end example |
| 336 | 338 | ||