1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-06 16:04:12 +01:00

Camel-case some identifiers gone rogue.

Do not free a camel of the burden of his hump; you may be freeing him from
being a camel.
- G. K. Chesterton
This commit is contained in:
Doug Kearns
2010-09-23 20:01:50 +10:00
parent 78b223bc74
commit defa81b3d5
24 changed files with 120 additions and 120 deletions

View File

@@ -311,7 +311,7 @@ lookup:
*/
source: function (filename, silent) {
let wasSourcing = this.sourcing;
defmodule.loadLog.push("sourcing " + filename);
defineModule.loadLog.push("sourcing " + filename);
let time = Date.now();
try {
var file = io.File(filename);
@@ -343,7 +343,7 @@ lookup:
dactyl.helpInitialized = false;
}
catch (e) {
if (isstring(e))
if (isString(e))
e = { message: e };
let err = new Error();
for (let [k, v] in Iterator(e))
@@ -431,7 +431,7 @@ lookup:
dactyl.echoerr(message);
}
finally {
defmodule.loadLog.push("done sourcing " + filename + ": " + (Date.now() - time) + "ms");
defineModule.loadLog.push("done sourcing " + filename + ": " + (Date.now() - time) + "ms");
this.sourcing = wasSourcing;
}
},