From: Stefan Monnier Date: Wed, 19 Mar 2008 02:38:44 +0000 (+0000) Subject: (For Clauses): Fix loop over key-seq to match code. X-Git-Tag: emacs-22.2~30 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=36374111c831d5b7acc4363c7a0959af02b0b87c;p=emacs.git (For Clauses): Fix loop over key-seq to match code. --- diff --git a/man/ChangeLog b/man/ChangeLog index 4b667dd0978..958410ee2d5 100644 --- a/man/ChangeLog +++ b/man/ChangeLog @@ -1,3 +1,7 @@ +2008-03-19 Stefan Monnier + + * cl.texi (For Clauses): Fix loop over key-seq to match code. + 2008-03-12 Reiner Steib * custom.texi, dired.texi, mini.texi, mule.texi: Add `referenced in the diff --git a/man/cl.texi b/man/cl.texi index 663fb131288..be37b3cb79e 100644 --- a/man/cl.texi +++ b/man/cl.texi @@ -2471,7 +2471,8 @@ hash table entry. @item for @var{var} being the key-codes of @var{keymap} This clause iterates over the entries in @var{keymap}. -The iteration does not enter nested keymaps or inherited (parent) keymaps. +The iteration does not enter nested keymaps but does enter inherited +(parent) keymaps. You can use @samp{the key-bindings} to access the commands bound to the keys rather than the key codes, and you can add a @code{using} clause to access both the codes and the bindings together.