Variable: emulation-mode-map-alists

emulation-mode-map-alists is a variable defined in keymap.c.

Value

nil

Documentation

List of keymap alists to use for emulation modes.

It is intended for modes or packages using multiple minor-mode keymaps. Each element is a keymap alist just like minor-mode-map-alist, or a symbol with a variable binding which is a keymap alist, and it is used the same way. The "active" keymaps in each alist are used before minor-mode-map-alist and minor-mode-overriding-map-alist.

Probably introduced at or before Emacs version 22.1.

Source Code

// Defined in /usr/src/emacs/src/keymap.c
  DEFVAR_LISP ("emulation-mode-map-alists", Vemulation_mode_map_alists,
	       doc: /* List of keymap alists to use for emulation modes.
It is intended for modes or packages using multiple minor-mode keymaps.
Each element is a keymap alist just like `minor-mode-map-alist', or a
symbol with a variable binding which is a keymap alist, and it is used
the same way.  The "active" keymaps in each alist are used before
`minor-mode-map-alist' and `minor-mode-overriding-map-alist'.  */);