diff options
| author | Glenn Morris | 2013-02-09 17:56:25 -0800 |
|---|---|---|
| committer | Glenn Morris | 2013-02-09 17:56:25 -0800 |
| commit | 490a9458c8310140a255b30330e9940fb68e27ef (patch) | |
| tree | 3788432fb3f95464bb087bebd43ed9d3aff32c6a /doc/lispref | |
| parent | 9cbab8d6abe6aa4caae260c8ed37386103a34f8e (diff) | |
| parent | c4af1efc91cb57cc7dbaa1ee21b2d4b85fd3f87b (diff) | |
| download | emacs-490a9458c8310140a255b30330e9940fb68e27ef.tar.gz emacs-490a9458c8310140a255b30330e9940fb68e27ef.zip | |
Merge from emacs-24; up to 2012-12-15T12:19:04Z!juri@jurta.org
Diffstat (limited to 'doc/lispref')
| -rw-r--r-- | doc/lispref/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/lispref/keymaps.texi | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 90b2349387f..a61d84a77b1 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2013-02-10 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * keymaps.texi (Creating Keymaps): Update make-keymap result. | ||
| 4 | |||
| 1 | 2013-02-09 Eli Zaretskii <eliz@gnu.org> | 5 | 2013-02-09 Eli Zaretskii <eliz@gnu.org> |
| 2 | 6 | ||
| 3 | * modes.texi (%-Constructs): Remove the description of %t. | 7 | * modes.texi (%-Constructs): Remove the description of %t. |
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 | ||