summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2009-09-24 10:50:23 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2009-09-24 10:50:23 -0400
commit7ab73a2a4142f9c9702568b9f0f5580fb6a96c12 (patch)
treec7cb2b18ee696c6c4f5fe1d0fa4e4aeb641d1525
parent5f6185fa2de1d01d43f9155faada0950b966ca06 (diff)
Main demo pieces all seem to work with interpretation
-rw-r--r--lib/js/urweb.js2
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);