Browse Source

Take regexps into account

Sergey Poznyakoff 21 years ago
parent
commit
f364d50661
1 changed files with 1 additions and 1 deletions
  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;
 }