Function: hpath:substitute-posix-or-mswindows

hpath:substitute-posix-or-mswindows is an autoloaded and byte-compiled function defined in hpath.el.

Signature

(hpath:substitute-posix-or-mswindows PATH)

Documentation

Change a recognizable Posix or MSWindows PATH to the other type of path.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hpath.el
;;;###autoload
(defun hpath:substitute-posix-or-mswindows (path)
  "Change a recognizable Posix or MSWindows PATH to the other type of path."
  (when (stringp path)
    (if (hpath:posix-path-p path)
	(hpath:posix-to-mswindows path)
      (hpath:mswindows-to-posix path))))