Changeset 3494

Show
Ignore:
Timestamp:
10/09/04 16:00:29 (4 years ago)
Author:
miyoshi
Message:

(mw32_async_handle_message): Call
WaitForSingleObject?() after all the emacs events are stored.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/2.1/src/ChangeLog.Meadow

    r3490 r3494  
     12004-10-09  MIYOSHI Masanori  <miyoshi@meadowy.org> 
     2 
     3        * mw32term.c (mw32_async_handle_message): Call 
     4        WaitForSingleObject() after all the emacs events are stored. 
     5 
    162004-10-06  MIYOSHI Masanori  <miyoshi@meadowy.org> 
    27 
  • branches/2.1/src/mw32term.c

    r3423 r3494  
    91599159      WaitMessage (); 
    91609160      nread = mw32_message_loop (0, buf, KBD_BUFFER_SIZE, 0); 
    9161       WaitForSingleObject (next_message_block_event, INFINITE); 
    91629161      /* Scan the chars for C-g and store them in kbd_buffer.  */ 
    91639162      for (i = 0; i < nread; i++) 
     
    91729171            } 
    91739172        } 
     9173      WaitForSingleObject (next_message_block_event, INFINITE); 
    91749174    } 
    91759175