diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-06-01 18:24:00 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-06-01 18:24:00 +0000 |
commit | aef4422ef8921754b09aee5449ddc90edc27f8e0 (patch) | |
tree | 7f204ed37681b07f9512c4e7d89eecbcae49121e /lisp/emacs-lisp/lucid.el | |
parent | e251a1fdf485bc9056493ada04f66139dfc1994a (diff) | |
download | emacs-aef4422ef8921754b09aee5449ddc90edc27f8e0.tar.gz emacs-aef4422ef8921754b09aee5449ddc90edc27f8e0.tar.bz2 emacs-aef4422ef8921754b09aee5449ddc90edc27f8e0.zip |
(map-keymap): Doc fix.
Diffstat (limited to 'lisp/emacs-lisp/lucid.el')
-rw-r--r-- | lisp/emacs-lisp/lucid.el | 7 |
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 @@ This includes bindings inherited from a parent keymap. FUNCTION receives two arguments each time it is called: the character (more generally, the event type) that is bound, -and the binding it has." +and the binding it has. + +Note that passing the event type directly to `define-key' does not work +in Emacs 19. We do not emulate that particular feature of Lucid Emacs. +If your code does that, modify it to make a vector containing the event +type that you get. That will work in both versions of Emacs." (if sort-first (let (list) (map-keymap (function (lambda (a b) |