4
0
Эх сурвалжийг харах

Take regexps into account

Sergey Poznyakoff 21 жил өмнө
parent
commit
f364d50661
1 өөрчлөгдсөн 1 нэмэгдсэн , 1 устгасан
  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;
 }