From 0725031fe3a95d4e61e76ffa7aa1c79d4bebb00f Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Tue, 19 Feb 2013 15:09:32 +0100 Subject: [PATCH] add link to doc about UNC names * module/ice-9/boot-9.scm (compile-time-case): Add link to docs about UNC names. --- module/ice-9/boot-9.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/module/ice-9/boot-9.scm b/module/ice-9/boot-9.scm index 991eb3b40..e748eddb4 100644 --- a/module/ice-9/boot-9.scm +++ b/module/ice-9/boot-9.scm @@ -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)