Skip to content

Commit

Permalink
minor bug corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
nurv committed Nov 12, 2011
1 parent 96a566e commit e35ad25
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 1 deletion.
Binary file added runtime/java/util/Arrays$ArrayList.class
Binary file not shown.
Binary file added runtime/java/util/Arrays.class
Binary file not shown.
2 changes: 1 addition & 1 deletion src/log.jsh
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@




function htmlentities(str) { function htmlentities(str) {
return String(str).replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;').replace(/"/g, '&quot;'); return String(str).replace(new RegExp("&","g"), '&amp;').replace(new RegExp("<","g"), '&lt;').replace(new RegExp(">","g"), '&gt;').replace(new RegExp("\"","g"), '&quot;');
} }


#define LOG(msg) write(msg);\ #define LOG(msg) write(msg);\
Expand Down

0 comments on commit e35ad25

Please sign in to comment.