summaryrefslogtreecommitdiff
path: root/src/eval.c
diff options
context:
space:
mode:
authorSteven Tamm <steventamm@mac.com>2004-07-19 04:42:43 +0000
committerSteven Tamm <steventamm@mac.com>2004-07-19 04:42:43 +0000
commit2dfaf9b7da51fdb05057cade8f30bf06ecbdaa74 (patch)
tree8e18ae0f3d66c4f73afb1037d1d1d5dce17e11f3 /src/eval.c
parent1f8d3daf3928300d68b8df0b275d4c1c29aa8d44 (diff)
downloademacs-2dfaf9b7da51fdb05057cade8f30bf06ecbdaa74.tar.gz
Fixes for Ctrl-G support on carbon, replacing old timeout based polling
with alarm based polling. mac.c (sys_select): Redo sys_select to use alarm-based polling instead of 1 sec timeouts (like solaris). macterm.c (x_make_frame_visible): Comment in polling on frame creation. keyboard.c: Undef SIGIO on Carbon atimer.c (alarm_signal_handler): Call alarm handlers after scheduling. eval.c (Feval): Remove quit_char test process.c (wait_reading_process_input): Remove clearing stdin for select call on process input
Diffstat (limited to 'src/eval.c')
-rw-r--r--src/eval.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/eval.c b/src/eval.c
index d7cfe959158..f28105ac987 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -2145,9 +2145,6 @@ DEFUN ("eval", Feval, Seval, 1, 1, 0,
val = call_debugger (Fcons (Qexit, Fcons (val, Qnil)));
backtrace_list = backtrace.next;
-#ifdef HAVE_CARBON
- mac_check_for_quit_char();
-#endif
return val;
}