Function: eshell-parse-colon-path

eshell-parse-colon-path is a byte-compiled function defined in esh-util.el.gz.

This function is obsolete since 29.1.

Signature

(eshell-parse-colon-path PATH-ENV)

Documentation

Split string with parse-colon-path.

Prepend remote identification of default-directory, if any.

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/esh-util.el.gz
(defun eshell-parse-colon-path (path-env)
  "Split string with `parse-colon-path'.
Prepend remote identification of `default-directory', if any."
  (declare (obsolete nil "29.1"))
  (let ((remote (file-remote-p default-directory)))
    (if remote
	(mapcar
	 (lambda (x) (concat remote x))
	 (parse-colon-path path-env))
      (parse-colon-path path-env))))