diff options
| author | Eli Zaretskii | 2016-08-31 20:19:42 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2016-08-31 20:19:42 +0300 |
| commit | 2030ddbd15b538a5dc2fc0548afc83941f67957a (patch) | |
| tree | 9737b9b7de28086ed2a1acf5d6453f35d62ce466 /lib-src | |
| parent | 9166d4025197d0109015f1c7a77e78dce63d3312 (diff) | |
| download | emacs-2030ddbd15b538a5dc2fc0548afc83941f67957a.tar.gz emacs-2030ddbd15b538a5dc2fc0548afc83941f67957a.zip | |
* lib-src/etags.c (invalidate_nodes): Fix another thinko.
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/etags.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib-src/etags.c b/lib-src/etags.c index 77dcaf030d6..3620b0fd321 100644 --- a/lib-src/etags.c +++ b/lib-src/etags.c | |||
| @@ -2224,7 +2224,7 @@ invalidate_nodes (fdesc *badfdp, node **npp) | |||
| 2224 | /* Push all the left children on the stack. */ | 2224 | /* Push all the left children on the stack. */ |
| 2225 | while (np->left != NULL) | 2225 | while (np->left != NULL) |
| 2226 | { | 2226 | { |
| 2227 | push_node (np->left, &stack); | 2227 | push_node (np, &stack); |
| 2228 | np = np->left; | 2228 | np = np->left; |
| 2229 | } | 2229 | } |
| 2230 | /* Invalidate this node. */ | 2230 | /* Invalidate this node. */ |