1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-19 21:07:57 +01:00

Uncommitted code from last commit.

This commit is contained in:
Kris Maglione
2010-12-30 20:25:36 -05:00
parent 85947d4645
commit 04731384f6

View File

@@ -4,6 +4,13 @@
// given in the LICENSE.txt file included with this file.
"use strict";
function reportError(e) {
dump("dactyl: components: " + e + "\n" + (e.stack || Error().stack));
Cu.reportError(e);
}
try {
var global = this;
var Cc = Components.classes;
var Ci = Components.interfaces;
@@ -53,4 +60,6 @@ else
var NSGetModule = XPCOMUtils.generateNSGetModule([CommandLineHandler]);
var EXPORTED_SYMBOLS = ["NSGetFactory", "global"];
} catch (e) { reportError(e) }
// vim: set fdm=marker sw=4 ts=4 et: