From 0d9292f09b4e0932aa187be31aa8634dfab5523e Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Tue, 4 Jan 2011 00:38:37 -0500 Subject: [PATCH] Fix deprecation warning. --- 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 a6c58a48..96beaeb2 100644 --- a/common/content/editor.js +++ b/common/content/editor.js @@ -248,7 +248,7 @@ var Editor = Module("editor", { dactyl.assert(args.length >= 1, "No editor specified"); - io.run(io.expandPath(args.shift()), args, blocking); + io.run(args.shift(), args, blocking); }, // TODO: clean up with 2 functions for textboxes and currentEditor?