changeset 80341:25f843ea0096

(For Clauses): Fix loop over key-seq to match code.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Wed, 19 Mar 2008 02:38:44 +0000
parents 756c7bbc9664
children b7bed0a77336
files man/ChangeLog man/cl.texi
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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  <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
--- 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.