diff options
| author | Joseph Arceneaux | 1992-10-14 23:10:56 +0000 |
|---|---|---|
| committer | Joseph Arceneaux | 1992-10-14 23:10:56 +0000 |
| commit | 433c217556540e08eb563047eaa43ffbe27904e1 (patch) | |
| tree | af262e591965a02a6191c429b9c6ec357baa0270 /src/alloc.c | |
| parent | 125f517a5f8c34a2045801f8e26e7323cfea3f23 (diff) | |
| download | emacs-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.c | 2 |
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) \ |