From f364d50661977d5db6df03470e85999a88ec5981 Mon Sep 17 00:00:00 2001 From: Sergey Poznyakoff Date: Thu, 2 Oct 2003 10:41:48 +0000 Subject: [PATCH] Take regexps into account --- src/names.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/names.c b/src/names.c index 41d3476..46581e0 100644 --- a/src/names.c +++ b/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; } -- 2.44.0