From 67eee9ad892d6075379e9e18013acb153860cb9a Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Tue, 28 Sep 2010 09:34:23 -0400 Subject: [PATCH] Fix spurious extra quotation marks in completion output. --- common/content/commands.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/content/commands.js b/common/content/commands.js index 1efa14b6..119257ec 100644 --- a/common/content/commands.js +++ b/common/content/commands.js @@ -1194,8 +1194,8 @@ const Commands = Module("commands", { "": quote("", "|\\\\\\s'\"") }; Commands.complQuote = { - '"': ['"', Commands.quoteArg['"'], '"'], - "'": ["'", Commands.quoteArg["'"], "'"], + '"': ['"', quote("", Commands.quoteArg['"'].list), '"'], + "'": ["'", quote("", Commands.quoteArg["'"].list), "'"], "": ["", Commands.quoteArg[""], ""] };