Pārlūkot izejas kodu

Take regexps into account

Sergey Poznyakoff 21 gadi atpakaļ
vecāks
revīzija
f364d50661
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      src/names.c

+ 1 - 1
src/names.c

@@ -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;
 }