Function: org-call-with-arg
org-call-with-arg is a byte-compiled function defined in
org-macs.el.gz.
Signature
(org-call-with-arg COMMAND ARG)
Documentation
Call COMMAND interactively, but pretend prefix arg was ARG.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-macs.el.gz
;;; Miscellaneous
(defsubst org-call-with-arg (command arg)
"Call COMMAND interactively, but pretend prefix arg was ARG."
(let ((current-prefix-arg arg)) (call-interactively command)))