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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user