# HG changeset patch # User Aidan Kehoe # Date 1426293766 0 # Node ID 5423bb35a956138caa61151a27732335dc2a67b7 # Parent 36934833b4f3539cd85b5343d93eaa7822cb4869 Correct .gdbinit, non-NEW_GC builds. src/ChangeLog additions: 2015-03-14 Aidan Kehoe * .gdbinit.in.in (Lisp): lrecord_type_lcrecord_list is specific to non-NEW_GC, lrecord_type_string_direct_data and lrecord_type_string_indirect_data are specific to NEW_GC, correct this in this file. diff -r 36934833b4f3 -r 5423bb35a956 src/.gdbinit.in.in --- a/src/.gdbinit.in.in Sat Mar 14 00:07:50 2015 +0000 +++ b/src/.gdbinit.in.in Sat Mar 14 00:42:46 2015 +0000 @@ -470,6 +470,7 @@ if $lrecord_type == lrecord_type_lcrecord_list pstructtype lcrecord_list else +#else if $lrecord_type == lrecord_type_string_direct_data pptype Lisp_String_Direct_Data else @@ -484,8 +485,6 @@ end #ifndef NEW_GC end - end - end #endif end end diff -r 36934833b4f3 -r 5423bb35a956 src/ChangeLog --- a/src/ChangeLog Sat Mar 14 00:07:50 2015 +0000 +++ b/src/ChangeLog Sat Mar 14 00:42:46 2015 +0000 @@ -1,3 +1,10 @@ +2015-03-14 Aidan Kehoe + + * .gdbinit.in.in (Lisp): lrecord_type_lcrecord_list is specific to + non-NEW_GC, lrecord_type_string_direct_data and + lrecord_type_string_indirect_data are specific to NEW_GC, correct + this in this file. + 2015-03-14 Aidan Kehoe * keymap.c (event_matches_key_specifier_p):