Function: org-kill-new
org-kill-new is a byte-compiled function defined in org-compat.el.
Signature
(org-kill-new STRING &rest ARGS)
Source Code
;; Defined in ~/.emacs.d/elpa/org-9.8.2/org-compat.el
(defun org-kill-new (string &rest args)
(remove-text-properties 0 (length string) '(line-prefix t wrap-prefix t)
string)
(apply 'kill-new string args))