comparison src/macros.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 facf3239ba30
comparison
equal deleted inserted replaced
2531:7de8d9ab7bbd 2532:989a7680c221
276 { 276 {
277 Vexecuting_macro = final; 277 Vexecuting_macro = final;
278 executing_macro_index = 0; 278 executing_macro_index = 0;
279 con->prefix_arg = Qnil; 279 con->prefix_arg = Qnil;
280 internal_catch (Qexecute_kbd_macro, call_command_loop, 280 internal_catch (Qexecute_kbd_macro, call_command_loop,
281 Qnil, 0, 0); 281 Qnil, 0, 0, 0);
282 } 282 }
283 while (--repeat != 0 283 while (--repeat != 0
284 && (STRINGP (Vexecuting_macro) || 284 && (STRINGP (Vexecuting_macro) ||
285 VECTORP (Vexecuting_macro))); 285 VECTORP (Vexecuting_macro)));
286 286