Function: url-tramp-file-handler

url-tramp-file-handler is an autoloaded and byte-compiled function defined in url-tramp.el.gz.

Signature

(url-tramp-file-handler OPERATION &rest ARGS)

Documentation

Function called from the file-name-handler-alist routines.

OPERATION is what needs to be done. ARGS are the arguments that would have been passed to OPERATION.

Source Code

;; Defined in /usr/src/emacs/lisp/url/url-tramp.el.gz
;;;###autoload
(defun url-tramp-file-handler (operation &rest args)
  "Function called from the `file-name-handler-alist' routines.
OPERATION is what needs to be done.  ARGS are the arguments that
would have been passed to OPERATION."
  (let ((default-directory (url-tramp-convert-url-to-tramp default-directory))
	(args (mapcar 'url-tramp-convert-url-to-tramp args)))
    (url-tramp-convert-tramp-to-url (apply operation args))))