Mercurial > hg > xemacs-beta
comparison src/alloc.c @ 2532:989a7680c221
[xemacs-hg @ 2005-01-29 09:15:55 by ben]
Add backtrace when throwing past call_trapping_problems()
alloc.c, backtrace.h, bytecode.c, cmdloop.c, eval.c, lisp.h, macros.c: Also include a backtrace when we catch an attempt to throw outside
of a function where call_trapping_problems() has been used.
author | ben |
---|---|
date | Sat, 29 Jan 2005 09:16:00 +0000 |
parents | 3d8143fc88e1 |
children | 9f70af3ac939 |
comparison
equal
deleted
inserted
replaced
2531:7de8d9ab7bbd | 2532:989a7680c221 |
---|---|
4773 for (catch = catchlist; catch; catch = catch->next) | 4773 for (catch = catchlist; catch; catch = catch->next) |
4774 { | 4774 { |
4775 mark_object (catch->tag); | 4775 mark_object (catch->tag); |
4776 mark_object (catch->val); | 4776 mark_object (catch->val); |
4777 mark_object (catch->actual_tag); | 4777 mark_object (catch->actual_tag); |
4778 mark_object (catch->backtrace); | |
4778 } | 4779 } |
4779 } | 4780 } |
4780 | 4781 |
4781 { | 4782 { |
4782 struct backtrace *backlist; | 4783 struct backtrace *backlist; |