diff --git a/common/content/bookmarks.js b/common/content/bookmarks.js index 93584786..f6832d5a 100644 --- a/common/content/bookmarks.js +++ b/common/content/bookmarks.js @@ -627,6 +627,7 @@ var Bookmarks = Module("bookmarks", { context.fork("keyword/" + keyword, keyword.length + space.length, null, function (context) { context.format = history.format; context.title = [/*L*/keyword + " Quick Search"]; + context.keys = { text: "url", description: "title", icon: "icon" }; // context.background = true; context.compare = CompletionContext.Sort.unsorted; context.generate = function () { diff --git a/common/modules/template.jsm b/common/modules/template.jsm index 2dedd5eb..31f22c7d 100644 --- a/common/modules/template.jsm +++ b/common/modules/template.jsm @@ -258,7 +258,7 @@ var Template = Module("Template", { // Fixes some strange stack rewinds on NS_ERROR_OUT_OF_MEMORY // exceptions that we can't catch. - stringify: function (arg) { + stringify: function stringify(arg) { if (!callable(arg)) return String(arg);