aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2012-09-22 13:35:46 -0700
committerPaul Eggert2012-09-22 13:35:46 -0700
commitd41e491e1ba6f2096233ce4ddd6033eba66ed2fc (patch)
tree11d528edc5e90713815044b6a6b858719c8b09b1 /src
parent2e83df57be5105f0fee8e6fe8360e75844ecfb7b (diff)
downloademacs-d41e491e1ba6f2096233ce4ddd6033eba66ed2fc.tar.gz
emacs-d41e491e1ba6f2096233ce4ddd6033eba66ed2fc.zip
* .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.
Diffstat (limited to 'src')
-rw-r--r--src/.gdbinit16
-rw-r--r--src/ChangeLog7
2 files changed, 10 insertions, 13 deletions
diff --git a/src/.gdbinit b/src/.gdbinit
index 79419f66ac1..74f44cc1007 100644
--- a/src/.gdbinit
+++ b/src/.gdbinit
@@ -1213,19 +1213,9 @@ set print sevenbit-strings
1213show environment DISPLAY 1213show environment DISPLAY
1214show environment TERM 1214show environment TERM
1215 1215
1216# People get bothered when they see messages about non-existent functions... 1216# When debugging, it is handy to be able to "return" from
1217xgetptr globals.f_Vsystem_type 1217# fatal_error_backtrace when an assertion failure is non-fatal.
1218# $ptr is NULL in temacs 1218break fatal_error_backtrace
1219if ($ptr != 0)
1220 set $tem = (struct Lisp_Symbol *) $ptr
1221 xgetptr $tem->name
1222 set $tem = (struct Lisp_String *) $ptr
1223 set $tem = (char *) $tem->data
1224
1225 # Don't let emacs_abort actually run, as it will make stdio stop
1226 # working and therefore the 'pr' command above as well.
1227 break emacs_abort
1228end
1229 1219
1230# x_error_quitter is defined only on X. But window-system is set up 1220# x_error_quitter is defined only on X. But window-system is set up
1231# only at run time, during Emacs startup, so we need to defer setting 1221# only at run time, during Emacs startup, so we need to defer setting
diff --git a/src/ChangeLog b/src/ChangeLog
index 9d8bc3a7c00..676f4127ba5 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,10 @@
12012-09-22 Paul Eggert <eggert@cs.ucla.edu>
2
3 * .gdbinit: Just stop at fatal_error_backtrace.
4 See Stefan Monnier's request in
5 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00549.html>.
6 Remove no-longer-used query of system type.
7
12012-09-22 Chong Yidong <cyd@gnu.org> 82012-09-22 Chong Yidong <cyd@gnu.org>
2 9
3 * search.c (Freplace_match): Doc fix (Bug#12325). 10 * search.c (Freplace_match): Doc fix (Bug#12325).