Mercurial > emacs
changeset 48742:7b5cd8383f0b
Feval: On Carbon/MacOSX call mac_check_for_quit_char at each stack frame.
This may change/move as it could be quite time consuming
author | Steven Tamm <steventamm@mac.com> |
---|---|
date | Sun, 08 Dec 2002 06:02:17 +0000 |
parents | a7aee9fdf21e |
children | 4036fa27e2a6 |
files | src/eval.c |
diffstat | 1 files changed, 4 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/eval.c Sun Dec 08 06:00:10 2002 +0000 +++ b/src/eval.c Sun Dec 08 06:02:17 2002 +0000 @@ -2160,6 +2160,10 @@ if (backtrace.debug_on_exit) val = call_debugger (Fcons (Qexit, Fcons (val, Qnil))); backtrace_list = backtrace.next; + +#ifdef HAVE_CARBON + mac_check_for_quit_char(); +#endif return val; }