diff options
| author | Paul Eggert | 2011-07-12 20:45:56 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-07-12 20:45:56 -0700 |
| commit | 89bfafe5d3e767c2f014b2738196411f8ba39d28 (patch) | |
| tree | b7ac7e72d430cebfc414d143e98a664b113ad4b2 /src/alloc.c | |
| parent | 5adf60bc2313a220185c9f22d3d539a0dc51b228 (diff) | |
| parent | cd18e7e3f49c014b83ffa5f2e4391a58ded6a287 (diff) | |
| download | emacs-89bfafe5d3e767c2f014b2738196411f8ba39d28.tar.gz emacs-89bfafe5d3e767c2f014b2738196411f8ba39d28.zip | |
Merge from trunk.
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 f325b6ed449..eb356fd0e83 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -5753,7 +5753,7 @@ gc_sweep (void) | |||
| 5753 | int ilim = (lim + BITS_PER_INT - 1) / BITS_PER_INT; | 5753 | int ilim = (lim + BITS_PER_INT - 1) / BITS_PER_INT; |
| 5754 | 5754 | ||
| 5755 | /* Scan the mark bits an int at a time. */ | 5755 | /* Scan the mark bits an int at a time. */ |
| 5756 | for (i = 0; i <= ilim; i++) | 5756 | for (i = 0; i < ilim; i++) |
| 5757 | { | 5757 | { |
| 5758 | if (cblk->gcmarkbits[i] == -1) | 5758 | if (cblk->gcmarkbits[i] == -1) |
| 5759 | { | 5759 | { |