From 3c240d29eddf52935c442a6a5575876aacc018b0 Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Wed, 19 Jan 2011 04:06:53 -0500 Subject: [PATCH] Add forgotten dequote call. --- common/content/mappings.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/content/mappings.js b/common/content/mappings.js index e8f7bdd1..ce224ca4 100644 --- a/common/content/mappings.js +++ b/common/content/mappings.js @@ -627,7 +627,7 @@ var Mappings = Module("mappings", { filters: Option.splitList(args[1], true).map(function (pattern) { let [, res, filter] = /^(!?)(.*)/.exec(pattern); - return update(Styles.matchFilter(filter), { + return update(Styles.matchFilter(Option.dequote(filter)), { result: !res, toString: function () pattern });