# HG changeset patch # User Stefan Monnier # Date 1205894324 0 # Node ID 25f843ea0096488e3240feab5145bad03fa590dd # Parent 756c7bbc96647ecce5303fc87caa4f2375a7a60e (For Clauses): Fix loop over key-seq to match code. diff -r 756c7bbc9664 -r 25f843ea0096 man/ChangeLog --- a/man/ChangeLog Tue Mar 18 20:52:17 2008 +0000 +++ b/man/ChangeLog Wed Mar 19 02:38:44 2008 +0000 @@ -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 -r 756c7bbc9664 -r 25f843ea0096 man/cl.texi --- a/man/cl.texi Tue Mar 18 20:52:17 2008 +0000 +++ b/man/cl.texi Wed Mar 19 02:38:44 2008 +0000 @@ -2471,7 +2471,8 @@ @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.