Function: preview-copy-mml
preview-copy-mml is a byte-compiled function defined in preview.el.
Signature
(preview-copy-mml OV)
Documentation
Copy an MML representation of OV into the kill buffer.
This can be used to send inline images in mail and news when using MML mode.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/preview.el
(defun preview-copy-mml (ov)
"Copy an MML representation of OV into the kill buffer.
This can be used to send inline images in mail and news when
using MML mode."
(when (catch 'badcolor
(let ((str (car (preview-format-mml ov))))
(if str
(if (eq last-command #'kill-region)
(kill-append str nil)
(kill-new str))
(error "No image file available")))
nil)
(let (preview-transparent-border)
(preview-regenerate ov))))