comparison src/alloc.c @ 5384:3889ef128488

Fix misspelled words, and some grammar, across the entire source tree. See xemacs-patches message with ID <AANLkTi=edkEKtK3pZ60ytsG5pTJQy2TjAEVCZCLOa-oA@mail.gmail.com>.
author Jerry James <james@xemacs.org>
date Thu, 24 Mar 2011 11:00:11 -0600
parents 22c4e67a2e69
children af961911bcb2 4dee0387b9de
comparison
equal deleted inserted replaced
5383:294ab9180fad 5384:3889ef128488
3603 if (claimed_size < 16) 3603 if (claimed_size < 16)
3604 claimed_size = 16; 3604 claimed_size = 16;
3605 # endif 3605 # endif
3606 if (claimed_size < 4096) 3606 if (claimed_size < 4096)
3607 { 3607 {
3608 /* fxg: rename log->log2 to supress gcc3 shadow warning */ 3608 /* fxg: rename log->log2 to suppress gcc3 shadow warning */
3609 int log2 = 1; 3609 int log2 = 1;
3610 3610
3611 /* compute the log base two, more or less, then use it to compute 3611 /* compute the log base two, more or less, then use it to compute
3612 the block size needed. */ 3612 the block size needed. */
3613 claimed_size--; 3613 claimed_size--;