aboutsummaryrefslogtreecommitdiff
path: root/src/interp/match.boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/match.boot')
-rw-r--r--src/interp/match.boot2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interp/match.boot b/src/interp/match.boot
index aee99c37..e146cd74 100644
--- a/src/interp/match.boot
+++ b/src/interp/match.boot
@@ -39,7 +39,7 @@ $wildCard := char "*"
maskMatch?(mask,subject) ==
null mask => true
- if null string? subject then subject := PNAME subject
+ if not string? subject then subject := PNAME subject
or/[match?(pattern,subject) for pattern in mask]
substring?(part, whole, startpos) ==