Here we describe the functions for creating keymaps.
nil, and does not bind any other kind of event.
(make-keymap)
=> (keymap [nil nil nil ... nil nil])
If you specify prompt, that becomes the overall prompt string for the keymap. The prompt string is useful for menu keymaps (see section Menu Keymaps).
make-keymap.
(make-sparse-keymap)
=> (keymap)
(setq map (copy-keymap (current-local-map)))
=> (keymap
;; (This implements meta characters.)
(27 keymap
(83 . center-paragraph)
(115 . center-line))
(9 . tab-to-tab-stop))
(eq map (current-local-map))
=> nil
(equal map (current-local-map))
=> t
Go to the first, previous, next, last section, table of contents.