diff options
| author | Richard M. Stallman | 1993-06-01 18:24:00 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-06-01 18:24:00 +0000 |
| commit | aef4422ef8921754b09aee5449ddc90edc27f8e0 (patch) | |
| tree | 7f204ed37681b07f9512c4e7d89eecbcae49121e | |
| parent | e251a1fdf485bc9056493ada04f66139dfc1994a (diff) | |
| download | emacs-aef4422ef8921754b09aee5449ddc90edc27f8e0.tar.gz emacs-aef4422ef8921754b09aee5449ddc90edc27f8e0.zip | |
(map-keymap): Doc fix.
| -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 @@ | |||
| 70 | This includes bindings inherited from a parent keymap. | 70 | This includes bindings inherited from a parent keymap. |
| 71 | FUNCTION receives two arguments each time it is called: | 71 | FUNCTION receives two arguments each time it is called: |
| 72 | the character (more generally, the event type) that is bound, | 72 | the character (more generally, the event type) that is bound, |
| 73 | and the binding it has." | 73 | and the binding it has. |
| 74 | |||
| 75 | Note that passing the event type directly to `define-key' does not work | ||
| 76 | in Emacs 19. We do not emulate that particular feature of Lucid Emacs. | ||
| 77 | If your code does that, modify it to make a vector containing the event | ||
| 78 | type 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) |