summaryrefslogtreecommitdiff
path: root/jslib/urweb.js
diff options
context:
space:
mode:
Diffstat (limited to 'jslib/urweb.js')
-rw-r--r--jslib/urweb.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jslib/urweb.js b/jslib/urweb.js
index fec37d1b..904e27e8 100644
--- a/jslib/urweb.js
+++ b/jslib/urweb.js
@@ -2,7 +2,7 @@ function cons(v, ls) {
return { n : ls, v : v };
}
function callAll(ls) {
- for (; ls; ls = ls.next)
+ for (; ls; ls = ls.n)
ls.v();
}