add link to doc about UNC names
authorAndy Wingo <wingo@pobox.com>
Tue, 19 Feb 2013 14:09:32 +0000 (15:09 +0100)
committerAndy Wingo <wingo@pobox.com>
Tue, 19 Feb 2013 14:09:32 +0000 (15:09 +0100)
* module/ice-9/boot-9.scm (compile-time-case): Add link to docs about
  UNC names.

module/ice-9/boot-9.scm

index 991eb3b..e748edd 100644 (file)
@@ -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)