diff options
| author | Steven Tamm | 2002-12-08 06:02:17 +0000 |
|---|---|---|
| committer | Steven Tamm | 2002-12-08 06:02:17 +0000 |
| commit | 824eb35eec1b6f21612df1832c758b8eead6237f (patch) | |
| tree | e68f6bae94fe562c126ed20db24ef7300542bfb4 /src/eval.c | |
| parent | 3605200c46de2d21a6598342228c3c1592462c3d (diff) | |
| download | emacs-824eb35eec1b6f21612df1832c758b8eead6237f.tar.gz emacs-824eb35eec1b6f21612df1832c758b8eead6237f.zip | |
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
Diffstat (limited to 'src/eval.c')
| -rw-r--r-- | src/eval.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/eval.c b/src/eval.c index 9cac4293243..7d8434ae78d 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -2160,6 +2160,10 @@ DEFUN ("eval", Feval, Seval, 1, 1, 0, | |||
| 2160 | if (backtrace.debug_on_exit) | 2160 | if (backtrace.debug_on_exit) |
| 2161 | val = call_debugger (Fcons (Qexit, Fcons (val, Qnil))); | 2161 | val = call_debugger (Fcons (Qexit, Fcons (val, Qnil))); |
| 2162 | backtrace_list = backtrace.next; | 2162 | backtrace_list = backtrace.next; |
| 2163 | |||
| 2164 | #ifdef HAVE_CARBON | ||
| 2165 | mac_check_for_quit_char(); | ||
| 2166 | #endif | ||
| 2163 | return val; | 2167 | return val; |
| 2164 | } | 2168 | } |
| 2165 | 2169 | ||