summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2008-03-19 02:38:44 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2008-03-19 02:38:44 +0000
commit36374111c831d5b7acc4363c7a0959af02b0b87c (patch)
treefaa24f87aba0ad941b8e2e5cfe2ed8137b76e9a1
parent1690cfbfacd8c500cf5f77fe6d7670943a49c26a (diff)
downloademacs-36374111c831d5b7acc4363c7a0959af02b0b87c.tar.gz
(For Clauses): Fix loop over key-seq to match code.
-rw-r--r--man/ChangeLog4
-rw-r--r--man/cl.texi3
2 files changed, 6 insertions, 1 deletions
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 <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
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.