Oscar Figueiredo <oscar(a)xemacs.org> writes:
#0 0x403033e5 in memmove (dest=0x836b949, src=0x836b948,
len=4294967169)
at ../sysdeps/generic/memmove.c:98
Note that len=(unsigned int)-127
Note that this should be this call
memmove (addroff + delta, addroff,
/* +1 due to zero-termination. */
string_length (s) + 1 - pos);
#1 0x807ed2d in resize_string (s=0x839906c, pos=128, delta=1)
at /home/tigger3/ge204/src/xemacs-21.1.3/src/alloc.c:2261
-127 = 0 + 1 -128
so I'm not sure this an optimization bug. Question: Why is this case
triggering anyway? 128*4 = 512 << 8192 - \epsilon
Jan