|
@@ -2363,7 +2363,6 @@ void zconf_initscan(const char *name)
|
|
|
|
|
|
current_file = file_lookup(name);
|
|
|
current_file->lineno = 1;
|
|
|
- current_file->flags = FILE_BUSY;
|
|
|
}
|
|
|
|
|
|
void zconf_nextfile(const char *name)
|
|
@@ -2403,7 +2402,6 @@ void zconf_nextfile(const char *name)
|
|
|
exit(1);
|
|
|
}
|
|
|
}
|
|
|
- file->flags |= FILE_BUSY;
|
|
|
file->lineno = 1;
|
|
|
file->parent = current_file;
|
|
|
current_file = file;
|
|
@@ -2413,8 +2411,6 @@ static void zconf_endfile(void)
|
|
|
{
|
|
|
struct buffer *parent;
|
|
|
|
|
|
- current_file->flags |= FILE_SCANNED;
|
|
|
- current_file->flags &= ~FILE_BUSY;
|
|
|
current_file = current_file->parent;
|
|
|
|
|
|
parent = current_buf->parent;
|