aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2004-02-16 23:11:58 +0000
committerKim F. Storm2004-02-16 23:11:58 +0000
commitab90a54d2f8d29c5c441bf11564c81e4c2c9d5e5 (patch)
tree0f78870ca77f8dd900f98c1216ef433a7eee2eca
parentb705e83b11ed13663cbca2d3ba96c99d78a9dc86 (diff)
downloademacs-ab90a54d2f8d29c5c441bf11564c81e4c2c9d5e5.tar.gz
emacs-ab90a54d2f8d29c5c441bf11564c81e4c2c9d5e5.zip
*** empty log message ***
-rw-r--r--src/ChangeLog14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index c52a1c92b64..865b4912c97 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,17 @@
12004-02-17 Kim F. Storm <storm@cua.dk>
2
3 * keyboard.c: Rework previous change; it didn't consider that the
4 buf array was allocated on the stack.
5 (prev_read): Remove variable.
6 (read_avail_input_buf): New static event buffer array.
7 (in_read_avail_input): New static variable to avoid re-entrancy.
8 (read_avail_input): Change buf to pinter to read_avail_input_buf.
9 Use in_read_avail_input to guard against re-entry.
10 Do not initialize read_avail_input_buf here; instead assume it
11 is always cleared on entry. To ensure that, we clear (just) the
12 entries that were used before we return.
13 (init_keyboard): Initialize read_avail_input_buf here.
14
12004-02-16 Jesper Harder <harder@ifa.au.dk> (tiny change) 152004-02-16 Jesper Harder <harder@ifa.au.dk> (tiny change)
2 16
3 * cmds.c (Fend_of_line): Doc fix. 17 * cmds.c (Fend_of_line): Doc fix.