From 1256e37286aa18282cae51ed28cff99ae3f90001 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Tue, 11 Jan 2011 20:24:22 +1100 Subject: [PATCH] Fix editor.editFieldExternally. Broken in revision 40e49837cafd. --- common/content/editor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/content/editor.js b/common/content/editor.js index 90baf1ed..507fb0bb 100644 --- a/common/content/editor.js +++ b/common/content/editor.js @@ -336,7 +336,7 @@ var Editor = Module("editor", { throw Error("Input contains characters not valid in the current " + "file encoding"); - let lastUpdate = Date.now(); + var lastUpdate = Date.now(); var timer = services.Timer(update, 100, services.Timer.TYPE_REPEATING_SLACK); this.editFileExternally({ file: tmpfile.path, line: line, column: column }, cleanup);