diff src/eval.c @ 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 ccd782f27e54
children ac6f6d4b84ec
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;
 }