diff options
author | Adam Chlipala <adamc@hcoop.net> | 2009-09-24 10:50:23 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2009-09-24 10:50:23 -0400 |
commit | b04755514658d23bd89b5453e0cdd544804ee418 (patch) | |
tree | c7cb2b18ee696c6c4f5fe1d0fa4e4aeb641d1525 /lib | |
parent | 19754bcfbe11a079957aeb9f012f3ee70b31bb84 (diff) |
Main demo pieces all seem to work with interpretation
Diffstat (limited to 'lib')
-rw-r--r-- | lib/js/urweb.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/js/urweb.js b/lib/js/urweb.js index 5f9a0a13..00a9cc1d 100644 --- a/lib/js/urweb.js +++ b/lib/js/urweb.js @@ -781,7 +781,7 @@ function rv(chn, parse, k) { var msg = dequeue(ch.msgs); if (msg == null) { - enqueue(ch.listeners, function(msg) { k(parse(msg))(null); }); + enqueue(ch.listeners, function(msg) { execF(execF(k, parse(msg)), null); }); } else { try { execF(execF(k, parse(msg)), null); |