Function: x-dnd-insert-ctext
x-dnd-insert-ctext is a byte-compiled function defined in x-dnd.el.gz.
Signature
(x-dnd-insert-ctext WINDOW ACTION TEXT)
Documentation
Decode the compound text and insert it at point.
TEXT is the text as a string, WINDOW is the window where the drop happened.
Source Code
;; Defined in /usr/src/emacs/lisp/x-dnd.el.gz
(defun x-dnd-insert-ctext (window action text)
"Decode the compound text and insert it at point.
TEXT is the text as a string, WINDOW is the window where the drop happened."
(dnd-insert-text window action
(decode-coding-string text
'compound-text-with-extensions)))