Function: tramp-replace-environment-variables
tramp-replace-environment-variables is a byte-compiled function
defined in tramp.el.gz.
Signature
(tramp-replace-environment-variables FILENAME)
Documentation
Replace environment variables in FILENAME.
Return the string with the replaced variables.
Source Code
;; Defined in /usr/src/emacs/lisp/net/tramp.el.gz
(defun tramp-replace-environment-variables (filename)
"Replace environment variables in FILENAME.
Return the string with the replaced variables."
(substitute-env-vars filename 'only-defined))