diff --git a/content/buffer.js b/content/buffer.js index c38a8950..8c2cb775 100644 --- a/content/buffer.js +++ b/content/buffer.js @@ -184,9 +184,9 @@ liberator.Buffer = function () //{{{ return [ ["0", "Don't show link destination"], ["1", "Show the link in the status line"], - ["2", "Show the link in the command line"], + ["2", "Show the link in the command line"] ]; - }, + } }); liberator.options.add(["usermode", "um"], @@ -1304,12 +1304,12 @@ liberator.Buffer = function () //{{{ } var prog = args.shift(); - args.push(url) + args.push(url); liberator.callFunctionInThread(newThread, liberator.io.run, [prog, args, true]); } else { - liberator.open("view-source:" + url) + liberator.open("view-source:" + url); } } }; diff --git a/content/editor.js b/content/editor.js index 4623739e..ffc16b07 100644 --- a/content/editor.js +++ b/content/editor.js @@ -775,7 +775,7 @@ liberator.Editor = function () //{{{ } var prog = args.shift(); - args.push(tmpfile.path) + args.push(tmpfile.path); if (textBox) { diff --git a/content/events.js b/content/events.js index c6ffa370..d1fd8cec 100644 --- a/content/events.js +++ b/content/events.js @@ -229,7 +229,7 @@ liberator.AutoCommands = function () //{{{ } }; //}}} -} //}}} +}; //}}} liberator.Events = function () //{{{ { diff --git a/content/hints.js b/content/hints.js index 66c6fb95..fbfdfdd7 100644 --- a/content/hints.js +++ b/content/hints.js @@ -594,7 +594,7 @@ liberator.Hints = function () //{{{ { return ["contains", "wordstartswith", "firstletters", "custom"] .map(function (m){ return [m, ""] }); - }, + } }); liberator.options.add(["wordseparators", "wsp"], diff --git a/content/mail.js b/content/mail.js index 70471a09..6f30eeb2 100644 --- a/content/mail.js +++ b/content/mail.js @@ -865,7 +865,7 @@ liberator.Mail = function () //{{{ var accounts = currentAccountOnly ? [this.currentAccount] : this.getFolders("", true, false); - var unreadCount = 0, totalCount = 0, newCount = 0;; + var unreadCount = 0, totalCount = 0, newCount = 0; for (var i = 0; i < accounts.length; i++) { var account = accounts[i]; diff --git a/content/ui.js b/content/ui.js index bcd4a5f9..aadaa566 100644 --- a/content/ui.js +++ b/content/ui.js @@ -1309,7 +1309,7 @@ liberator.StatusLine = function () //{{{ ["1", "Display status line only if there are multiple windows"], ["2", "Always display status line"], ]; - }, + } }); /////////////////////////////////////////////////////////////////////////////}}}