| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] | 
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 should be provided for menu keymaps (see section 22.12.1 Defining Menus).
make-keymap,
and does not bind any events.  The argument prompt specifies a
prompt string, as in 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
 | 
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |