diff options
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/lux/regex.lux | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/stdlib/source/lux/regex.lux b/stdlib/source/lux/regex.lux index 417abc086..5684a4465 100644 --- a/stdlib/source/lux/regex.lux +++ b/stdlib/source/lux/regex.lux @@ -481,7 +481,8 @@ )} (do @ [current-module compiler;current-module-name] - (case (&;run (&;&_ (regex^ current-module) &;end) pattern) + (case (&;run pattern + (&;&_ (regex^ current-module) &;end)) (#;Left error) (compiler;fail error) |