Function: repeat-get-map

repeat-get-map is a byte-compiled function defined in repeat.el.gz.

Signature

(repeat-get-map MAP)

Documentation

Return a transient map for keys repeatable after the current command.

Source Code

;; Defined in /usr/src/emacs/lisp/repeat.el.gz
(defun repeat-get-map (map)
  "Return a transient map for keys repeatable after the current command."
  (when map
    (when (and (symbolp map) (boundp map))
      (setq map (symbol-value map)))
    map))