aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorJoseph Arceneaux1992-10-14 23:10:56 +0000
committerJoseph Arceneaux1992-10-14 23:10:56 +0000
commit433c217556540e08eb563047eaa43ffbe27904e1 (patch)
treeaf262e591965a02a6191c429b9c6ec357baa0270 /src/alloc.c
parent125f517a5f8c34a2045801f8e26e7323cfea3f23 (diff)
downloademacs-433c217556540e08eb563047eaa43ffbe27904e1.tar.gz
emacs-433c217556540e08eb563047eaa43ffbe27904e1.zip
* alloc.c (mark_interval_tree): Pass 0 as initial depth argument
to traverse_intervals().
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c
index 9f5cdd0822e..c1703f777cc 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -262,7 +262,7 @@ mark_interval_tree (tree)
262 if (XMARKBIT (tree->plist)) 262 if (XMARKBIT (tree->plist))
263 return; 263 return;
264 264
265 traverse_intervals (tree, 1, &mark_interval); 265 traverse_intervals (tree, 1, 0, &mark_interval);
266} 266}
267 267
268#define MARK_INTERVAL_TREE(i) \ 268#define MARK_INTERVAL_TREE(i) \