diff --git a/common/modules/commands.jsm b/common/modules/commands.jsm index 270e6a64..7cc58592 100644 --- a/common/modules/commands.jsm +++ b/common/modules/commands.jsm @@ -798,7 +798,7 @@ var Commands = Module("commands", { let lines = string.split(/\r\n|[\r\n]/); let startLine = context.line; - for (let i = 0; i < lines.length && !context.finished; i++) { + for (var i = 0; i < lines.length && !context.finished; i++) { // Deal with editors from Silly OSs. let line = lines[i].replace(/\r$/, "");