From 3bcc7ed859aecb758742b0cf23cae98214938012 Mon Sep 17 00:00:00 2001 From: Adam Chlipala Date: Mon, 8 Aug 2016 13:53:17 -0400 Subject: Remove a check that was actually always passing because it was on the wrong object; this helps explain why the last change was necessary --- lib/js/urweb.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/js/urweb.js b/lib/js/urweb.js index b871b8e5..95fd6756 100644 --- a/lib/js/urweb.js +++ b/lib/js/urweb.js @@ -762,8 +762,7 @@ function sv(s, v) { s.data = v; for (var ls = s.dyns; ls; ls = ls.next) - if (!ls.dead) - populate(ls.data); + populate(ls.data); } } function sg(s) { -- cgit v1.2.3