Mercurial > hg > xemacs-beta
comparison etc/dbxrc.in @ 5598:bccc91a65536
Fix .gdbinit and .dbxrc when using the new garbage collector.
ChangeLog:
2011-11-21 Marcus Crestani <crestani@informatik.uni-tuebingen.de>
* configure.ac: Fix creation of etc/dbxrc and src/.dbxrc; only try
to create Makefile when Makefile.in is there.
* configure: Regenerate.
src/ChangeLog:
2011-11-21 Marcus Crestani <crestani@informatik.uni-tuebingen.de>
* .gdbinit.in.in: There is no lrecord_type_lcrecord_list when
using the new garbage collector; print $lrecord_type when Lisp
Object type is unknown to pobj.
etc/ChangeLog:
2011-11-21 Marcus Crestani <crestani@informatik.uni-tuebingen.de>
* dbxrc.in: There is no lrecord_type_lcrecord_list when using the
new garbage collector; print $lrecord_type when Lisp Object type
is unknown to pobj.
author | Marcus Crestani <crestani@informatik.uni-tuebingen.de> |
---|---|
date | Mon, 21 Nov 2011 10:28:31 +0100 |
parents | 308d34e9f07d |
children |
comparison
equal
deleted
inserted
replaced
5597:79a1a759ec3d | 5598:bccc91a65536 |
---|---|
311 pstruct elhash.c Lisp_Hash_Table | 311 pstruct elhash.c Lisp_Hash_Table |
312 elif test $lrecord_type = lrecord_type_image_instance; then | 312 elif test $lrecord_type = lrecord_type_image_instance; then |
313 pstruct glyphs.c Lisp_Image_Instance | 313 pstruct glyphs.c Lisp_Image_Instance |
314 elif test $lrecord_type = lrecord_type_keymap; then | 314 elif test $lrecord_type = lrecord_type_keymap; then |
315 pstruct keymap.c Lisp_Keymap | 315 pstruct keymap.c Lisp_Keymap |
316 #ifndef NEW_GC | |
316 elif test $lrecord_type = lrecord_type_lcrecord_list; then | 317 elif test $lrecord_type = lrecord_type_lcrecord_list; then |
317 pstruct alloc.c lcrecord_list | 318 pstruct alloc.c lcrecord_list |
319 #endif | |
318 elif test $lrecord_type = lrecord_type_ldap; then | 320 elif test $lrecord_type = lrecord_type_ldap; then |
319 pstruct ldap.c Lisp_LDAP | 321 pstruct ldap.c Lisp_LDAP |
320 elif test $lrecord_type = lrecord_type_lstream; then | 322 elif test $lrecord_type = lrecord_type_lstream; then |
321 pstruct lstream.c lstream | 323 pstruct lstream.c lstream |
322 elif test $lrecord_type = lrecord_type_marker; then | 324 elif test $lrecord_type = lrecord_type_marker; then |
359 pstruct window.c window_config | 361 pstruct window.c window_config |
360 elif test "$type" = "null_pointer"; then | 362 elif test "$type" = "null_pointer"; then |
361 echo "Lisp Object is a null pointer!!" | 363 echo "Lisp Object is a null pointer!!" |
362 else | 364 else |
363 echo "Unknown Lisp Object type" | 365 echo "Unknown Lisp Object type" |
366 print $lrecord_type | |
364 print $1 | 367 print $1 |
365 fi | 368 fi |
366 } | 369 } |
367 | 370 |
368 dbxenv suppress_startup_message 4.0 | 371 dbxenv suppress_startup_message 4.0 |