Function: menu-bar-current-active-maps

menu-bar-current-active-maps is a byte-compiled function defined in menu-bar.el.gz.

Signature

(menu-bar-current-active-maps)

Documentation

Return the current active maps in the order the menu bar displays them.

This value does not take into account menu-bar-final-items as that applies per-item.

Source Code

;; Defined in /usr/src/emacs/lisp/menu-bar.el.gz
(defun menu-bar-current-active-maps ()
  "Return the current active maps in the order the menu bar displays them.
This value does not take into account `menu-bar-final-items' as that applies
per-item."
  ;; current-active-maps returns maps in the order local then
  ;; global. The menu bar displays items in the opposite order.
  (cons 'keymap (nreverse (current-active-maps))))