Function: tramp-start-process
tramp-start-process is a byte-compiled function defined in
tramp.el.gz.
Signature
(tramp-start-process VEC NAME BUFFER PROGRAM &rest ARGS)
Documentation
Call start-process on the local host.
Run post process creation actions. Traces are written with verbosity of 6.
Source Code
;; Defined in /usr/src/emacs/lisp/net/tramp.el.gz
(defun tramp-start-process (vec name buffer program &rest args)
"Call `start-process' on the local host.
Run post process creation actions. Traces are written with verbosity of 6."
(let ((vec (or vec (car tramp-current-connection)))
(p (with-tramp-local-environment
(apply #'start-process name buffer program args))))
;; Initialize variables.
(tramp-post-process-creation p vec)
p))