diff options
Diffstat (limited to 'stdlib')
-rw-r--r-- | stdlib/match.tl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/match.tl b/stdlib/match.tl index 149ea71f..65382cc2 100644 --- a/stdlib/match.tl +++ b/stdlib/match.tl @@ -121,7 +121,7 @@ menv (:method exists (me sym) (or (member sym me.vars) - (lexical-var-p me.menv sym) + (lexical-binding-kind me.menv sym) (boundp sym))) (:method record (me sym) (push sym me.vars)) (:method merge (me copy) (each ((v copy.vars)) (pushnew v me.vars)))) |