Function: repeat-get-map-sym

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

Signature

(repeat-get-map-sym)

Documentation

Return a transient map possibly as a symbol.

Source Code

;; Defined in /usr/src/emacs/lisp/repeat.el.gz
(defun repeat-get-map-sym ()
  "Return a transient map possibly as a symbol."
  (when repeat-mode
    (let ((map-sym (or repeat-map (repeat--command-property 'repeat-map)))
          (continue (repeat--command-property 'repeat-continue)))
      (when (and repeat-in-progress
                 (or (eq continue t)
                     (and (consp continue)
                          (memq repeat-in-progress continue))))
        (setq map-sym repeat-in-progress))
      map-sym)))