summaryrefslogtreecommitdiff
path: root/common/modules/io.jsm
diff options
context:
space:
mode:
authorKris Maglione <maglione.k@gmail.com>2012-12-16 23:34:56 -0800
committerKris Maglione <maglione.k@gmail.com>2012-12-16 23:34:56 -0800
commitebc0edd5bb3e9cb77e1da23b9a1e4f5c6ca65b8e (patch)
tree3606d3c3edb5da64130b644536b4472c629ab491 /common/modules/io.jsm
parent6a87343724158694f8915f25edabc95f039a2e68 (diff)
downloadpentadactyl-ebc0edd5bb3e9cb77e1da23b9a1e4f5c6ca65b8e.tar.gz
Death to E4X and stuff.
Diffstat (limited to 'common/modules/io.jsm')
-rw-r--r--common/modules/io.jsm4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/modules/io.jsm b/common/modules/io.jsm
index b64ee70e..962c2557 100644
--- a/common/modules/io.jsm
+++ b/common/modules/io.jsm
@@ -5,7 +5,7 @@
//
// This work is licensed for reuse under an MIT license. Details are
// given in the LICENSE.txt file included with this file.
-/* use strict */
+"use strict";
try {
@@ -173,7 +173,7 @@ var IO = Module("io", {
e.fileName = util.fixURI(e.fileName);
if (e.fileName == uri.spec)
e.fileName = filename;
- e.echoerr = <>{e.fileName}:{e.lineNumber}: {e}</>;
+ e.echoerr = [e.fileName, ":", e.lineNumber, ": ", e].join("");
}
catch (e) {}
throw e;