소스 검색

Take regexps into account

Sergey Poznyakoff 21 년 전
부모
커밋
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;
 }