diff options
Diffstat (limited to 'stdlib/source/lux/control/cont.lux')
-rw-r--r-- | stdlib/source/lux/control/cont.lux | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/source/lux/control/cont.lux b/stdlib/source/lux/control/cont.lux index 1f50fe547..c3be37b73 100644 --- a/stdlib/source/lux/control/cont.lux +++ b/stdlib/source/lux/control/cont.lux @@ -59,7 +59,7 @@ {#.doc (doc "Turns any expression into a function that is pending a continuation." (pending (some-function some-input)))} (with-gensyms [g!k] - (wrap (list (` (.function [(~@ g!k)] ((~@ g!k) (~ expr)))))))) + (wrap (list (` (.function [(~ g!k)] ((~ g!k) (~ expr)))))))) (def: #export (portal init) (All [i o z] |