# HG changeset patch # User Chong Yidong # Date 1174154974 0 # Node ID 540a9c31e1c6290ceeed53cb2a0c6f5963b3758e # Parent 2c6f34a88eaf4e965586222282684ab5e425fd91 * process.c (sigchld_handler): Change type of pid to pid_t. Scan deleted_pid_list explicitly to avoid using Fmember which don't know about mark bits and make_fixnum_or_float which may malloc. Reported by Andreas Schwab. * keyboard.c (read_key_sequence): Store original event into keybuf when replaying sequence with local keymap(s) from string. diff -r 2c6f34a88eaf -r 540a9c31e1c6 src/ChangeLog --- a/src/ChangeLog Sat Mar 17 18:08:50 2007 +0000 +++ b/src/ChangeLog Sat Mar 17 18:09:34 2007 +0000 @@ -1,3 +1,13 @@ +2007-03-12 Kim F. Storm + + * process.c (sigchld_handler): Change type of pid to pid_t. + Scan deleted_pid_list explicitly to avoid using Fmember which don't + know about mark bits and make_fixnum_or_float which may malloc. + Reported by Andreas Schwab. + + * keyboard.c (read_key_sequence): Store original event into keybuf + when replaying sequence with local keymap(s) from string. + 2007-03-11 Sam Steingold * process.c (sigchld_handler): Sleep before wait3 to avoid a busyloop.