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

Revert "Allow empty defsearch."

This reverts commit 3cab7c16a0ef5e39f9aeeb8ea1ed9602a6a152f4.
This commit is contained in:
Kris Maglione
2008-12-19 12:29:13 -05:00
parent 073383ef12
commit da5db4429e
3 changed files with 1 additions and 11 deletions

View File

@@ -1645,7 +1645,7 @@ function Completion() //{{{
let engines = bookmarks.getSearchEngines();
context.title = ["Search Keywords"];
context.completions = [ bookmarks.makeKeyword("", "No default search engine", null, "") ].concat( keywords.concat(engines) );
context.completions = keywords.concat(engines);
context.keys = { text: 0, description: 1, icon: 2 };
if (!space || noSuggest)