1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-05 11:15:46 +01:00

Fix :h <partial-tag>

This commit is contained in:
Kris Maglione
2008-12-23 14:12:08 -05:00
parent 89743f5435
commit d225b8908b

View File

@@ -950,7 +950,7 @@ const liberator = (function () //{{{
{
if (item[0] == topic)
return format(item);
else if (partialMatch == -1 && item[0].indexOf(topic) > -1)
else if (!partialMatch && item[0].indexOf(topic) > -1)
{
partialMatch = item;
}