aboutsummaryrefslogtreecommitdiffstats
path: root/src/keymap.c
diff options
context:
space:
mode:
authorStefan Kangas2021-10-24 08:08:09 +0200
committerStefan Kangas2021-10-24 08:12:12 +0200
commite154fd9119dc36dd1249ea9e372bcf8b3cae8546 (patch)
treebe275664734a34590784a7d854a2e404fe05b0cd /src/keymap.c
parent4fd5c8df67e2eb41dd0ea6d95586bbd8d09cc482 (diff)
downloademacs-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.c3
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.
629If KEYMAP has a parent, the parent's bindings are included as well. 629If KEYMAP has a parent, the parent's bindings are included as well.
630This works recursively: if the parent has itself a parent, then the 630This works recursively: if the parent has itself a parent, then the
631grandparent's bindings are also included and so on. 631grandparent's bindings are also included and so on.
632
633For more information, see Info node `(elisp) Keymaps'.
634
632usage: (map-keymap FUNCTION KEYMAP) */) 635usage: (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{