Function: url-insert-file-contents-literally
url-insert-file-contents-literally is an autoloaded and byte-compiled
function defined in url-handlers.el.gz.
Signature
(url-insert-file-contents-literally URL)
Documentation
Insert the data retrieved from URL literally in the current buffer.
Source Code
;; Defined in /usr/src/emacs/lisp/url/url-handlers.el.gz
;;;###autoload
(defun url-insert-file-contents-literally (url)
"Insert the data retrieved from URL literally in the current buffer."
(let ((buffer (url-retrieve-synchronously url)))
(unless buffer
(signal 'file-error (list url "No Data")))
(url-insert buffer nil nil t)
(kill-buffer buffer)
nil))