1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-23 23:35:45 +01:00

add missing semicolons

This commit is contained in:
Doug Kearns
2008-12-19 23:00:14 +11:00
parent d65b23be3d
commit d60c81ef23
14 changed files with 44 additions and 38 deletions

View File

@@ -689,7 +689,7 @@ function Events() //{{{
commands.add(["macros"],
"List all macros",
function (args) { completion.listCompleter("macro", args[0]) },
function (args) { completion.listCompleter("macro", args[0]); },
{
argCount: "?",
completer: function (context) completion.macro(context)
@@ -1283,7 +1283,7 @@ function Events() //{{{
{
events.feedingKeys = false;
if (lastMacro)
setTimeout(function () { liberator.echomsg("Canceled playback of macro '" + lastMacro + "'") }, 100);
setTimeout(function () { liberator.echomsg("Canceled playback of macro '" + lastMacro + "'"); }, 100);
event.preventDefault();
event.stopPropagation();
return true;