Changeset 4133
- Timestamp:
- 08/01/06 23:23:11 (2 years ago)
- Files:
-
- trunk/src/ChangeLog.Meadow (modified) (1 diff)
- trunk/src/keyboard.c (modified) (4 diffs)
- trunk/src/mw32term.c (modified) (1 diff)
- trunk/src/process.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/ChangeLog.Meadow
r4132 r4133 1 2006-08-01 MIYOSHI Masanori <miyoshi@meadowy.org> 2 3 * process.c (wait_reading_process_output): Revert the last change. 4 5 * mw32term.c (MW32_read_socket): Ignore the 2nd argument 6 `expected'. Refer to [meadow-develop: 7443]. 7 8 * keyboard.c (kbd_buffer_get_event): Remove `have_input'. 9 1 10 2006-07-31 MIYOSHI Masanori <miyoshi@meadowy.org> 2 11 trunk/src/keyboard.c
r4132 r4133 3942 3942 Lisp_Object obj; 3943 3943 #ifdef MEADOW 3944 int have_input;3945 3944 extern void note_sync_event (void); 3946 3945 #endif … … 3996 3995 { 3997 3996 note_sync_event (); 3998 have_input =wait_reading_process_output (EMACS_SECS (duration),3999 EMACS_USECS (duration),4000 -1, 1, Qnil, NULL, 0);3997 wait_reading_process_output (EMACS_SECS (duration), 3998 EMACS_USECS (duration), 3999 -1, 1, Qnil, NULL, 0); 4001 4000 } 4002 4001 #else … … 4010 4009 { 4011 4010 note_sync_event (); 4012 have_input = wait_reading_process_output (0, 0, -1, 1, 4013 Qnil, NULL, 0); 4011 wait_reading_process_output (0, 0, -1, 1, Qnil, NULL, 0); 4014 4012 } 4015 4013 #else … … 4018 4016 #endif 4019 4017 if (!interrupt_input && kbd_fetch_ptr == kbd_store_ptr) 4020 #ifdef MEADOW4021 read_avail_input (have_input);4022 #else4023 4018 /* Pass 1 for EXPECT since we just waited to have input. */ 4024 4019 read_avail_input (1); 4025 #endif4026 4020 #endif /* not VMS */ 4027 4021 } trunk/src/mw32term.c
r4119 r4133 4534 4534 if (expected) 4535 4535 { 4536 #if 0 4537 /* Ignore `expected'. Refer to [meadow-develop: 7443]. */ 4536 4538 ResetEvent (keyboard_handle); 4537 4539 WaitForSingleObject (keyboard_handle, INFINITE); 4540 #endif 4538 4541 } 4539 4542 return 0; trunk/src/process.c
r4132 r4133 4618 4618 4619 4619 if (time_limit && nfds == 0 && ! timeout_reduced_for_timers) 4620 #ifdef MEADOW4621 {4622 /* This is a temporary hack and should be removed soon.4623 Refer to [meadow-develop: 7431]. */4624 got_some_input = 0;4625 #endif4626 4620 /* We wanted the full specified time, so return now. */ 4627 4621 break; 4628 #ifdef MEADOW4629 }4630 #endif4631 4622 if (nfds < 0) 4632 4623 {
