Function: x-dnd-insert-utf8-text
x-dnd-insert-utf8-text is a byte-compiled function defined in
x-dnd.el.gz.
Signature
(x-dnd-insert-utf8-text WINDOW ACTION TEXT)
Documentation
Decode the UTF-8 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-utf8-text (window action text)
"Decode the UTF-8 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 'utf-8)))