summaryrefslogtreecommitdiff
path: root/scm/lily.scm
diff options
context:
space:
mode:
Diffstat (limited to 'scm/lily.scm')
-rw-r--r--scm/lily.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/scm/lily.scm b/scm/lily.scm
index c670eb15bf..eb487d33e9 100644
--- a/scm/lily.scm
+++ b/scm/lily.scm
@@ -507,7 +507,8 @@ messages into errors.")
(and (eq? PLATFORM 'windows)
(> file-name-length 2)
(eq? (string-ref file-name 1) #\:)
- (eq? (string-ref file-name 2) #\/))))))
+ (or (eq? (string-ref file-name 2) #\\)
+ (eq? (string-ref file-name 2) #\/)))))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; If necessary, emulate Guile V2 module_export_all! for Guile V1.8.n