Mercurial > hg > xemacs-beta
comparison src/alloc.c @ 5474:4dee0387b9de
Merged with trunk.
author | Mats Lidell <matsl@xemacs.org> |
---|---|
date | Tue, 29 Mar 2011 00:02:47 +0200 |
parents | 00e79bbbe48f 3889ef128488 |
children | 248176c74e6b |
comparison
equal
deleted
inserted
replaced
5473:ac37a5f7e5be | 5474:4dee0387b9de |
---|---|
3601 if (claimed_size < 16) | 3601 if (claimed_size < 16) |
3602 claimed_size = 16; | 3602 claimed_size = 16; |
3603 # endif | 3603 # endif |
3604 if (claimed_size < 4096) | 3604 if (claimed_size < 4096) |
3605 { | 3605 { |
3606 /* fxg: rename log->log2 to supress gcc3 shadow warning */ | 3606 /* fxg: rename log->log2 to suppress gcc3 shadow warning */ |
3607 int log2 = 1; | 3607 int log2 = 1; |
3608 | 3608 |
3609 /* compute the log base two, more or less, then use it to compute | 3609 /* compute the log base two, more or less, then use it to compute |
3610 the block size needed. */ | 3610 the block size needed. */ |
3611 claimed_size--; | 3611 claimed_size--; |