diff options
| author | Steven Tamm | 2004-07-19 04:42:43 +0000 |
|---|---|---|
| committer | Steven Tamm | 2004-07-19 04:42:43 +0000 |
| commit | e082ac9deb976fa9ea3e09d639191bee9e9d5315 (patch) | |
| tree | 82a1728cf854c76c67afea7fcd1cc5fc81a44688 /src/eval.c | |
| parent | 1204e81c9e8cc713c8d19116873d9d96a9471467 (diff) | |
| download | emacs-e082ac9deb976fa9ea3e09d639191bee9e9d5315.tar.gz emacs-e082ac9deb976fa9ea3e09d639191bee9e9d5315.zip | |
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.c | 3 |
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, | |||
| 2145 | val = call_debugger (Fcons (Qexit, Fcons (val, Qnil))); | 2145 | val = call_debugger (Fcons (Qexit, Fcons (val, Qnil))); |
| 2146 | backtrace_list = backtrace.next; | 2146 | backtrace_list = backtrace.next; |
| 2147 | 2147 | ||
| 2148 | #ifdef HAVE_CARBON | ||
| 2149 | mac_check_for_quit_char(); | ||
| 2150 | #endif | ||
| 2151 | return val; | 2148 | return val; |
| 2152 | } | 2149 | } |
| 2153 | 2150 | ||