summaryrefslogtreecommitdiffstats
path: root/stdlib/path-test.tl
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/path-test.tl')
-rw-r--r--stdlib/path-test.tl2
1 files changed, 2 insertions, 0 deletions
diff --git a/stdlib/path-test.tl b/stdlib/path-test.tl
index e0970504..491f63af 100644
--- a/stdlib/path-test.tl
+++ b/stdlib/path-test.tl
@@ -166,11 +166,13 @@
(eval-only
(defmacro if-windows (then : else)
+ (use then)
(if (eql 2 (sizeof wchar))
then
else))
(defmacro if-native-windows (then : else)
+ (use then)
(if-windows
^(if (find #\\ path-sep-chars) ,then ,else)
else)))