1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-06 15:14:12 +01:00

add some missing semicolons and remove some trailing commas

This commit is contained in:
Doug Kearns
2008-09-28 11:38:51 +00:00
parent fa1765465e
commit 6f6922f035
5 changed files with 14 additions and 18 deletions

View File

@@ -68,9 +68,9 @@ liberator.Bookmarks = function () //{{{
function readBookmark(id)
{
return {
itemId: id,
uri: bookmarksService.getBookmarkURI(id).spec,
title: bookmarksService.getItemTitle(id),
itemId: id,
uri: bookmarksService.getBookmarkURI(id).spec,
title: bookmarksService.getItemTitle(id)
};
}
@@ -220,7 +220,7 @@ liberator.Bookmarks = function () //{{{
liberator.mappings.add(modes, ["A"],
"Toggle bookmarked state of current URL",
function () { liberator.bookmarks.toggle(liberator.buffer.URL); });
function () liberator.bookmarks.toggle(liberator.buffer.URL));
/////////////////////////////////////////////////////////////////////////////}}}
////////////////////// COMMANDS ////////////////////////////////////////////////
@@ -973,7 +973,7 @@ liberator.QuickMarks = function () //{{{
if (filter.length > 0)
{
marks = marks.filter(function (qmark) filter.indexOf(qmark) >= 0)
marks = marks.filter(function (qmark) filter.indexOf(qmark) >= 0);
if (marks.length == 0)
{
liberator.echoerr("E283: No QuickMarks matching \"" + filter + "\"");