Function: current-minor-mode-maps

current-minor-mode-maps is a function defined in keymap.c.

Signature

(current-minor-mode-maps)

Documentation

Return a list of keymaps for the minor modes of the current buffer.

View in manual

Source Code

// Defined in /usr/src/emacs/src/keymap.c
{
  Lisp_Object *maps;
  int nmaps = current_minor_maps (0, &maps);

  return Flist (nmaps, maps);
}