mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-21 20:20:24 +02:00
add link to doc about UNC names
* module/ice-9/boot-9.scm (compile-time-case): Add link to docs about UNC names.
This commit is contained in:
parent
9b6316eabc
commit
0725031fe3
1 changed files with 2 additions and 1 deletions
|
@ -1454,7 +1454,8 @@ VALUE."
|
|||
(define (absolute-file-name? file-name)
|
||||
(define (unc-file-name?)
|
||||
;; Universal Naming Convention (UNC) file-names start with \\,
|
||||
;; and are always absolute.
|
||||
;; and are always absolute. See:
|
||||
;; http://msdn.microsoft.com/en-us/library/windows/desktop/aa365247(v=vs.85).aspx#fully_qualified_vs._relative_paths
|
||||
(string-prefix? "\\\\" file-name))
|
||||
(define (has-drive-specifier?)
|
||||
(and (>= (string-length file-name) 2)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue