Variable: hpath:mswindows-mount-prefix
hpath:mswindows-mount-prefix is a variable defined in hpath.el.
Value
"/mnt/"
Documentation
Path prefix to add when converting MSWindows drive paths to POSIX-style.
Must include a trailing directory separator or be nil.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hpath.el
(defvar hpath:mswindows-mount-prefix
(cond ((eq system-type 'cygwin)
"/cygdrive/")
(hyperb:microsoft-os-p
"")
(t ;; POSIX
"/mnt/"))
"Path prefix to add when converting MSWindows drive paths to POSIX-style.
Must include a trailing directory separator or be nil.")