mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-23 07:48:02 +01:00
Dont use argCount with literal. Use the default favicon in :ls
This commit is contained in:
@@ -616,7 +616,7 @@ function CommandLine() //{{{
|
||||
},
|
||||
{
|
||||
completer: function (context) completion.javascript(context),
|
||||
literal: true
|
||||
literal: 0
|
||||
});
|
||||
});
|
||||
|
||||
@@ -1439,7 +1439,7 @@ function ItemList(id) //{{{
|
||||
{
|
||||
do
|
||||
var next = nodes[++i];
|
||||
while ((!next || next.parentNode != items) && i < nodes.length);
|
||||
while ((!next || next.parentNode != items) && i < end)
|
||||
items.insertBefore(row, next);
|
||||
}
|
||||
else if (!display && row.parentNode == items)
|
||||
|
||||
Reference in New Issue
Block a user