Function: preview-copy-text
preview-copy-text is a byte-compiled function defined in preview.el.
Signature
(preview-copy-text OV)
Documentation
Copy the text of OV into the kill buffer.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/preview.el
(defun preview-copy-text (ov)
"Copy the text of OV into the kill buffer."
(with-current-buffer (overlay-buffer ov)
(copy-region-as-kill (overlay-start ov) (overlay-end ov))))