1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-04 11:34:12 +01:00

Add forgotten dequote call.

This commit is contained in:
Kris Maglione
2011-01-19 04:06:53 -05:00
parent 36c6393d5d
commit 3c240d29ed

View File

@@ -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
});