]> git.eshelyaron.com Git - emacs.git/commitdiff
(For Clauses): Fix loop over key-seq to match code.
authorStefan Monnier <monnier@iro.umontreal.ca>
Wed, 19 Mar 2008 02:38:44 +0000 (02:38 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Wed, 19 Mar 2008 02:38:44 +0000 (02:38 +0000)
man/ChangeLog
man/cl.texi

index 4b667dd097867542136aabab504b2e12bc687aac..958410ee2d5f3591676975497ac850991a06f75d 100644 (file)
@@ -1,3 +1,7 @@
+2008-03-19  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * cl.texi (For Clauses): Fix loop over key-seq to match code.
+
 2008-03-12  Reiner Steib  <Reiner.Steib@gmx.de>
 
        * custom.texi, dired.texi, mini.texi, mule.texi: Add `referenced in the
index 663fb131288677fe8454d6b1a3546c5978dd2dd3..be37b3cb79e734704db0627cfbc513dc68abe256 100644 (file)
@@ -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.