aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1993-06-01 18:24:00 +0000
committerRichard M. Stallman1993-06-01 18:24:00 +0000
commitaef4422ef8921754b09aee5449ddc90edc27f8e0 (patch)
tree7f204ed37681b07f9512c4e7d89eecbcae49121e
parente251a1fdf485bc9056493ada04f66139dfc1994a (diff)
downloademacs-aef4422ef8921754b09aee5449ddc90edc27f8e0.tar.gz
emacs-aef4422ef8921754b09aee5449ddc90edc27f8e0.zip
(map-keymap): Doc fix.
-rw-r--r--lisp/emacs-lisp/lucid.el7
1 files changed, 6 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/lucid.el b/lisp/emacs-lisp/lucid.el
index dc45ef546f7..144aaf35b22 100644
--- a/lisp/emacs-lisp/lucid.el
+++ b/lisp/emacs-lisp/lucid.el
@@ -70,7 +70,12 @@
70This includes bindings inherited from a parent keymap. 70This includes bindings inherited from a parent keymap.
71FUNCTION receives two arguments each time it is called: 71FUNCTION receives two arguments each time it is called:
72the character (more generally, the event type) that is bound, 72the character (more generally, the event type) that is bound,
73and the binding it has." 73and the binding it has.
74
75Note that passing the event type directly to `define-key' does not work
76in Emacs 19. We do not emulate that particular feature of Lucid Emacs.
77If your code does that, modify it to make a vector containing the event
78type that you get. That will work in both versions of Emacs."
74 (if sort-first 79 (if sort-first
75 (let (list) 80 (let (list)
76 (map-keymap (function (lambda (a b) 81 (map-keymap (function (lambda (a b)