1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 10:57:58 +01:00

whitespace and semicolon fixes

This commit is contained in:
Doug Kearns
2008-11-02 11:54:56 +00:00
parent d52466188e
commit 6dfc33035b
12 changed files with 41 additions and 40 deletions

View File

@@ -200,7 +200,7 @@ function Bookmarks() //{{{
if (event == "add")
autocommands.trigger("BookmarkAdd", arg);
statusline.updateUrl();
}
};
var cache = storage.newObject("bookmark-cache", Cache, false);
storage.addObserver("bookmark-cache", bookmarkObserver);
@@ -835,7 +835,7 @@ function History() //{{{
{
url: item[0],
title: item[1],
icon: bookmarks.getFavicon(item[0]),
icon: bookmarks.getFavicon(item[0])
} for each ([i, item] in Iterator(items)) if (i < 1000)));
commandline.echo(list, commandline.HL_NORMAL, commandline.FORCE_MULTILINE);
}