diff options
author | Adam Chlipala <adam@chlipala.net> | 2011-12-04 15:13:53 -0500 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2011-12-04 15:13:53 -0500 |
commit | cf15b8c2685f7dba7566b9833569cdad078fc429 (patch) | |
tree | 13f7dbfad5476e358d258573ba563f0f18451ec4 /lib | |
parent | 64adfd7ff1361a1886d689f03b5e30780df9e691 (diff) |
Stop [read] from raising an exception for invalid [int] strings
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 c6e55907..a10c107f 100644 --- a/lib/js/urweb.js +++ b/lib/js/urweb.js @@ -972,7 +972,7 @@ function trimZeroes(s) { if (s == "0") return s; else - er("Can't parse int: " + s); + return {}; } function pi(s) { |