diff options
| author | Kim F. Storm | 2004-02-17 00:28:22 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2004-02-17 00:28:22 +0000 |
| commit | b9568dfc774d8f4eef30229e898a5b8dff755e41 (patch) | |
| tree | 815fa0320efc38cdd204153e2019eea3ad2f92cb /src | |
| parent | 9940231136a3a88bce8439d20e19928dbbc2edd1 (diff) | |
| download | emacs-b9568dfc774d8f4eef30229e898a5b8dff755e41.tar.gz emacs-b9568dfc774d8f4eef30229e898a5b8dff755e41.zip | |
*** empty log message ***
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 865b4912c97..f66d21d83b5 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -4,10 +4,11 @@ | |||
| 4 | buf array was allocated on the stack. | 4 | buf array was allocated on the stack. |
| 5 | (prev_read): Remove variable. | 5 | (prev_read): Remove variable. |
| 6 | (read_avail_input_buf): New static event buffer array. | 6 | (read_avail_input_buf): New static event buffer array. |
| 7 | (in_read_avail_input): New static variable to avoid re-entrancy. | 7 | (in_read_avail_input): New static variable to handle re-entrancy. |
| 8 | (read_avail_input): Change buf to pinter to read_avail_input_buf. | 8 | (read_avail_input): Change buf to pinter to read_avail_input_buf. |
| 9 | Use in_read_avail_input to guard against re-entry. | 9 | Use in_read_avail_input to handle re-entrance; when re-entered, |
| 10 | Do not initialize read_avail_input_buf here; instead assume it | 10 | fully initialize and use tmp_buf array instead of read_avail_input_buf. |
| 11 | Do not initialize read_avail_input_buf in full here; instead assume it | ||
| 11 | is always cleared on entry. To ensure that, we clear (just) the | 12 | is always cleared on entry. To ensure that, we clear (just) the |
| 12 | entries that were used before we return. | 13 | entries that were used before we return. |
| 13 | (init_keyboard): Initialize read_avail_input_buf here. | 14 | (init_keyboard): Initialize read_avail_input_buf here. |