aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorEli Zaretskii2013-12-02 19:28:17 +0200
committerEli Zaretskii2013-12-02 19:28:17 +0200
commit21bf394d7d1065a886c486f00c614ca905db1ed5 (patch)
tree1e58173b63b155f4a524c4df71fc6f19b1ffa82e /src/ChangeLog
parentf345395c71fb70cc6b42edbef06a26bc6b9b31e0 (diff)
downloademacs-21bf394d7d1065a886c486f00c614ca905db1ed5.tar.gz
emacs-21bf394d7d1065a886c486f00c614ca905db1ed5.zip
Improve reporting of fatal exception on MS-Windows, to aid debugging #15994.
src/w32fns.c (my_exception_handler): New function. (globals_of_w32fns): Set it up as the unhandled exception handler. Initialize exception code and address to zeros. (emacs_abort): If the exception code and address are available, print them at the beginning of the backtrace. Fix the format of printing addresses (was producing 0x0x12345678 on XP).
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index db311bdcba5..a5c6668c551 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,14 @@
12013-12-02 Eli Zaretskii <eliz@gnu.org>
2
3 Improve reporting of fatal exception on MS-Windows.
4 * w32fns.c (my_exception_handler): New function.
5 (globals_of_w32fns): Set it up as the unhandled exception
6 handler. Initialize exception code and address to zeros.
7 (emacs_abort): If the exception code and address are available,
8 print them at the beginning of the backtrace. Fix the format of
9 printing addresses (was producing 0x0x12345678 on XP).
10 (Bug#15994)
11
12013-12-02 Helmut Eller <eller.helmut@gmail.com> 122013-12-02 Helmut Eller <eller.helmut@gmail.com>
2 13
3 * eval.c (Fbacktrace__locals): New function. 14 * eval.c (Fbacktrace__locals): New function.