Take regexps into account

This commit is contained in:
Sergey Poznyakoff
2003-10-02 10:41:48 +00:00
parent 17878ad672
commit f364d50661

View File

@@ -601,7 +601,7 @@ names_done ()
{
struct name const *cursor;
for (cursor = namelist; cursor; cursor = cursor->next)
if (!cursor->found && !cursor->fake)
if (cursor->regexp || (!cursor->found && !cursor->fake))
return false;
return true;
}