1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-28 18:32:26 +01:00

prevent the failed find error message from being cleared

This commit is contained in:
Doug Kearns
2007-09-23 14:17:51 +00:00
parent db4a3f3f7d
commit 72ca90fa8f

View File

@@ -134,7 +134,7 @@ function Search() //{{{
found = fastFind.find(search_string, links_only) != Components.interfaces.nsITypeAheadFind.FIND_NOTFOUND;
if (!found)
vimperator.echoerr("E486: Pattern not found: " + search_pattern);
setTimeout(function() { vimperator.echoerr("E486: Pattern not found: " + search_pattern); }, 0);
return found;
}