diff options
| author | Stefan Kangas | 2021-10-24 08:08:09 +0200 |
|---|---|---|
| committer | Stefan Kangas | 2021-10-24 08:12:12 +0200 |
| commit | e154fd9119dc36dd1249ea9e372bcf8b3cae8546 (patch) | |
| tree | be275664734a34590784a7d854a2e404fe05b0cd /src/keymap.c | |
| parent | 4fd5c8df67e2eb41dd0ea6d95586bbd8d09cc482 (diff) | |
| download | emacs-e154fd9119dc36dd1249ea9e372bcf8b3cae8546.tar.gz emacs-e154fd9119dc36dd1249ea9e372bcf8b3cae8546.zip | |
Refer to the info node on keymaps in map-keymap docstring
* src/keymap.c (Fmap_keymap): Doc fix; add a reference to the Info
node '(elisp) Keymaps'. (Bug#30958)
Diffstat (limited to 'src/keymap.c')
| -rw-r--r-- | src/keymap.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/keymap.c b/src/keymap.c index be45d2be1e2..940a6f492ec 100644 --- a/src/keymap.c +++ b/src/keymap.c | |||
| @@ -629,6 +629,9 @@ the definition it is bound to. The event may be a character range. | |||
| 629 | If KEYMAP has a parent, the parent's bindings are included as well. | 629 | If KEYMAP has a parent, the parent's bindings are included as well. |
| 630 | This works recursively: if the parent has itself a parent, then the | 630 | This works recursively: if the parent has itself a parent, then the |
| 631 | grandparent's bindings are also included and so on. | 631 | grandparent's bindings are also included and so on. |
| 632 | |||
| 633 | For more information, see Info node `(elisp) Keymaps'. | ||
| 634 | |||
| 632 | usage: (map-keymap FUNCTION KEYMAP) */) | 635 | usage: (map-keymap FUNCTION KEYMAP) */) |
| 633 | (Lisp_Object function, Lisp_Object keymap, Lisp_Object sort_first) | 636 | (Lisp_Object function, Lisp_Object keymap, Lisp_Object sort_first) |
| 634 | { | 637 | { |