Function: org-with-gensyms
org-with-gensyms is a macro defined in org-macs.el.
Signature
(org-with-gensyms SYMBOLS &rest BODY)
Source Code
;; Defined in ~/.emacs.d/elpa/org-9.8.2/org-macs.el
(defmacro org-with-gensyms (symbols &rest body)
(declare (debug (sexp body)) (indent 1))
`(let ,(mapcar (lambda (s)
`(,s (make-symbol (concat "--" (symbol-name ',s)))))
symbols)
,@body))