Function: org-export--copy-to-kill-ring-p
org-export--copy-to-kill-ring-p is a byte-compiled function defined in
ox.el.gz.
Signature
(org-export--copy-to-kill-ring-p)
Documentation
Return a non-nil value when output should be added to the kill ring.
See also org-export-copy-to-kill-ring.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox.el.gz
(defun org-export--copy-to-kill-ring-p ()
"Return a non-nil value when output should be added to the kill ring.
See also `org-export-copy-to-kill-ring'."
(if (eq org-export-copy-to-kill-ring 'if-interactive)
(not (or executing-kbd-macro noninteractive))
(eq org-export-copy-to-kill-ring t)))