Function: tramp-crypt-run-real-handler

tramp-crypt-run-real-handler is a byte-compiled function defined in tramp-crypt.el.gz.

Signature

(tramp-crypt-run-real-handler OPERATION ARGS)

Documentation

Invoke normal file name handler for OPERATION.

First arg specifies the OPERATION, second arg ARGS is a list of arguments to pass to the OPERATION.

Source Code

;; Defined in /usr/src/emacs/lisp/net/tramp-crypt.el.gz
(defun tramp-crypt-run-real-handler (operation args)
  "Invoke normal file name handler for OPERATION.
First arg specifies the OPERATION, second arg ARGS is a list of
arguments to pass to the OPERATION."
  (let* ((inhibit-file-name-handlers
	  `(tramp-crypt-file-name-handler
	    .
	    ,(and (eq inhibit-file-name-operation operation)
		  inhibit-file-name-handlers)))
	 (inhibit-file-name-operation operation))
    (apply operation args)))