changeset 5859:5423bb35a956

Correct .gdbinit, non-NEW_GC builds. src/ChangeLog additions: 2015-03-14 Aidan Kehoe <kehoea@parhasard.net> * .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.
author Aidan Kehoe <kehoea@parhasard.net>
date Sat, 14 Mar 2015 00:42:46 +0000
parents 36934833b4f3
children 916b48abd1c6
files src/.gdbinit.in.in src/ChangeLog
diffstat 2 files changed, 8 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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
--- 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  <kehoea@parhasard.net>
+
+	* .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  <kehoea@parhasard.net>
 
 	* keymap.c (event_matches_key_specifier_p):