From: Kim F. Storm Date: Fri, 21 May 2004 23:35:24 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: ttn-vms-21-2-B4~6114 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4d12067c77083dbacb34366b576825ca7315531c;p=emacs.git *** empty log message *** --- diff --git a/src/ChangeLog b/src/ChangeLog index 61fc4bd2a86..ef7bb7fdd00 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,18 @@ +2004-05-22 Kim F. Storm + + * alloc.c (struct backtrace): Add debug_on_exit member. + (Fgarbage_collect): Clear out buffer undo_list markers after gc_sweep. + Identify those markers as Lisp_Misc_Free objects. Clear car and cdr of + the removed cons cells. + (mark_object): Undo previous change - disallow Lisp_Misc_Free objects. + (gc_sweep): Clear cons_blocks before sweeping strings, so we don't have + any cons cells pointing to unallocated stings. + Do not lisp_free any marker blocks, as there may still be pointers + to them from buffer undo lists at this stage of GC. + + * keyboard.c (struct backtrace): Add debug_on_exit member. + (Fcommand_execute): Clear it. + 2004-05-20 Luc Teirlinck * intervals.c (lookup_char_property): Do not prematurely return nil. @@ -6,6 +21,7 @@ Add support for new '\_<' and '\_>' regexp operators, matching the beginning and ends of symbols. + * regex.c (enum syntaxcode): Add Ssymbol. (init_syntax_once): Set the syntax for '_' to Ssymbol, not Sword. (re_opcode_t): New opcodes `symbeg' and `symend'.