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

make sure Command.names includes unabbreviatable names

This commit is contained in:
Doug Kearns
2007-06-19 04:18:22 +00:00
parent 8bbca0acf1
commit fd8821eee7

View File

@@ -91,7 +91,10 @@ function Command(specs, action, extra_info)//{{{
names.push(match[1]); names.push(match[1]);
} }
else else
{
long_names.push(specs[i]); long_names.push(specs[i]);
names.push(specs[i]);
}
} }
return { names: names, long_names: long_names, short_names: short_names }; return { names: names, long_names: long_names, short_names: short_names };
} }