From aa27e686c8732361d86490117a8ad69fb7ba0ee5 Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Tue, 23 Dec 2008 14:17:15 -0500 Subject: [PATCH] Fix :mkv for options with white space --- common/content/options.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/content/options.js b/common/content/options.js index b9aa8d66..558bedc6 100644 --- a/common/content/options.js +++ b/common/content/options.js @@ -743,8 +743,8 @@ function Options() //{{{ serial: function () [ { command: this.name, - literalArg: opt.type == "boolean" ? (opt.value ? "" : "no") + opt.name - : opt.name + "=" + opt.value + arguments: [opt.type == "boolean" ? (opt.value ? "" : "no") + opt.name + : opt.name + "=" + opt.value] } for (opt in options) if (!opt.getter && opt.value != opt.defaultValue && (opt.scope & options.OPTION_SCOPE_GLOBAL))