Function: markdown--dotimes-when-compile
markdown--dotimes-when-compile is a macro defined in markdown-mode.el.
Signature
(markdown--dotimes-when-compile I-N BODY)
Source Code
;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defmacro markdown--dotimes-when-compile (i-n body)
(declare (indent 1) (debug ((symbolp form) form)))
(let ((var (car i-n))
(n (cadr i-n))
(code ()))
(dotimes (i (eval n t))
(push (eval body `((,var . ,i))) code))
`(progn ,@(nreverse code))))