* Fix Issue #4212; Use Back-Slash for Win FileShares * Replace single backslash with double Co-authored-by: Henrik Lissner <accounts@v0.io>
This commit is contained in:
parent
68b1594553
commit
ccda9ef6bb
1 changed files with 1 additions and 1 deletions
|
@ -412,7 +412,7 @@ relative to `org-directory', unless it is an absolute path."
|
|||
:face (lambda (path)
|
||||
(if (or (file-remote-p path)
|
||||
;; filter out network shares on windows (slow)
|
||||
(and IS-WINDOWS (string-prefix-p "//" path))
|
||||
(and IS-WINDOWS (string-prefix-p "\\\\" path))
|
||||
(file-exists-p path))
|
||||
'org-link
|
||||
'error)))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue