From: Glenn Morris Date: Sat, 9 Feb 2013 02:36:39 +0000 (-0500) Subject: * doc/lispref/keymaps.texi (Creating Keymaps): Update make-keymap result. X-Git-Tag: emacs-24.3-rc1~81 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=dc55466e6766659999ea202c2f0158bf8b320f55;p=emacs.git * doc/lispref/keymaps.texi (Creating Keymaps): Update make-keymap result. --- diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 0fff7efbfc5..bfc4ee2bcce 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog @@ -1,3 +1,7 @@ +2013-02-09 Glenn Morris + + * keymaps.texi (Creating Keymaps): Update make-keymap result. + 2013-02-08 Glenn Morris * keymaps.texi (Active Keymaps, Searching Keymaps): 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 event. The argument @var{prompt} specifies a prompt string, as in @code{make-sparse-keymap}. +@c This example seems kind of pointless, but I guess it serves +@c to contrast the result with make-sparse-keymap above. @example @group (make-keymap) - @result{} (keymap #^[t nil nil nil @dots{} nil nil keymap]) + @result{} (keymap #^[nil nil keymap nil nil nil @dots{}]) @end group @end example