Built-in symbols are "<builtin>", not "<command-line>" (#1362)

This commit is contained in:
Sylvie
2024-03-19 16:01:45 -04:00
committed by GitHub
parent fec2266dd8
commit 554778da5b
7 changed files with 103 additions and 84 deletions

View File

@@ -101,10 +101,9 @@ FileStackNode *fstk_GetFileStack() {
FileStackNode *topNode = contextStack.top().fileInfo;
// Mark node and all of its parents as referenced if not already so they don't get freed
for (FileStackNode *node = topNode; node && !node->referenced; node = node->parent) {
for (FileStackNode *node = topNode; node && !node->referenced; node = node->parent)
node->referenced = true;
node->ID = -1;
}
return topNode;
}