1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 11:58:00 +01:00

fix broken 'wildignore' validator

This commit is contained in:
Doug Kearns
2008-11-28 13:03:28 +00:00
parent 5a3a35ea26
commit c56dfe137d

View File

@@ -499,7 +499,7 @@ function CommandLine() //{{{
// TODO: allow for escaping the ","
try
{
new RegExp("^(" + value.join("|") + ")$");
RegExp("^(" + values.join("|") + ")$");
return true;
}
catch (e)