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

add missing semicolon

This commit is contained in:
Doug Kearns
2008-08-05 06:32:29 +00:00
parent 0cff571607
commit 134bd01b20

View File

@@ -639,7 +639,7 @@ liberator.Commands = function () //{{{
liberator.echoerr("E182: Invalid command name");
return false;
}
var [cmd, rep] = [res[1], res[2]]
var [cmd, rep] = [res[1], res[2]];
}
if (rep)
@@ -682,6 +682,7 @@ liberator.Commands = function () //{{{
//}}}
return commandManager;
}; //}}}
// vim: set fdm=marker sw=4 ts=4 et: