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

Update tab binding for 4.0b7. Needs to be applied earlier, still.

This commit is contained in:
Kris Maglione
2010-09-20 08:51:52 -04:00
parent f888d50f6b
commit 7afdad0d31
3 changed files with 28 additions and 17 deletions

View File

@@ -912,7 +912,7 @@ const Commands = Module("commands", {
}
// dynamically get completions as specified with the command's completer function
let command = commands.get(cmd);
let command = cmd && commands.get(cmd);
if (!command) {
context.highlight(0, cmd && cmd.length, "SPELLCHECK");
return;