1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-05 11:45:45 +00:00

* lib-src/etags.c (invalidate_nodes): Fix another thinko.

This commit is contained in:
Eli Zaretskii 2016-08-31 20:19:42 +03:00
parent 9166d40251
commit 2030ddbd15

View File

@ -2224,7 +2224,7 @@ invalidate_nodes (fdesc *badfdp, node **npp)
/* Push all the left children on the stack. */
while (np->left != NULL)
{
push_node (np->left, &stack);
push_node (np, &stack);
np = np->left;
}
/* Invalidate this node. */