emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r110148: * .gdbinit: Just stop at fat


From: Paul Eggert
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r110148: * .gdbinit: Just stop at fatal_error_backtrace.
Date: Sat, 22 Sep 2012 13:35:46 -0700
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 110148
committer: Paul Eggert <address@hidden>
branch nick: trunk
timestamp: Sat 2012-09-22 13:35:46 -0700
message:
  * .gdbinit: Just stop at fatal_error_backtrace.
  
  See Stefan Monnier's request in
  <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00549.html>.
  Remove no-longer-used query of system type.
modified:
  src/.gdbinit
  src/ChangeLog
=== modified file 'src/.gdbinit'
--- a/src/.gdbinit      2012-09-04 17:34:54 +0000
+++ b/src/.gdbinit      2012-09-22 20:35:46 +0000
@@ -1213,19 +1213,9 @@
 show environment DISPLAY
 show environment TERM
 
-# People get bothered when they see messages about non-existent functions...
-xgetptr globals.f_Vsystem_type
-# $ptr is NULL in temacs
-if ($ptr != 0)
-  set $tem = (struct Lisp_Symbol *) $ptr
-  xgetptr $tem->name
-  set $tem = (struct Lisp_String *) $ptr
-  set $tem = (char *) $tem->data
-
-  # Don't let emacs_abort actually run, as it will make stdio stop
-  # working and therefore the 'pr' command above as well.
-  break emacs_abort
-end
+# When debugging, it is handy to be able to "return" from
+# fatal_error_backtrace when an assertion failure is non-fatal.
+break fatal_error_backtrace
 
 # x_error_quitter is defined only on X.  But window-system is set up
 # only at run time, during Emacs startup, so we need to defer setting

=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2012-09-22 15:24:26 +0000
+++ b/src/ChangeLog     2012-09-22 20:35:46 +0000
@@ -1,3 +1,10 @@
+2012-09-22  Paul Eggert  <address@hidden>
+
+       * .gdbinit: Just stop at fatal_error_backtrace.
+       See Stefan Monnier's request in
+       <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00549.html>.
+       Remove no-longer-used query of system type.
+
 2012-09-22  Chong Yidong  <address@hidden>
 
        * search.c (Freplace_match): Doc fix (Bug#12325).


reply via email to

[Prev in Thread] Current Thread [Next in Thread]