aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorJuanma Barranquero2002-12-10 07:40:21 +0000
committerJuanma Barranquero2002-12-10 07:40:21 +0000
commitb11f1d8a332465e124e6fdc02d445af4bc29014e (patch)
tree631b443a255ce12154703522e21c1b6e1acdc4aa /src/ChangeLog
parent2573153f50c8451949c4333542aba5038cbbc375 (diff)
downloademacs-b11f1d8a332465e124e6fdc02d445af4bc29014e.tar.gz
emacs-b11f1d8a332465e124e6fdc02d445af4bc29014e.zip
(Fformat): Use alloca, not _alloca.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 38f2c6c798b..650df8494e7 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12002-12-10 Juanma Barranquero <lektu@terra.es>
2
3 * editfns.c (Fformat): Use alloca, not _alloca.
4
12002-12-09 Richard M. Stallman <rms@gnu.org> 52002-12-09 Richard M. Stallman <rms@gnu.org>
2 6
3 * buffer.c (Fget_buffer_create): Call Qucs_set_table_for_input 7 * buffer.c (Fget_buffer_create): Call Qucs_set_table_for_input
@@ -24,15 +28,15 @@
24 28
25 * eval.c (Feval) [HAVE_CARBON]: Calls mac_check_for_quit_char at 29 * eval.c (Feval) [HAVE_CARBON]: Calls mac_check_for_quit_char at
26 each stack frame. This may change as it could be time consuming. 30 each stack frame. This may change as it could be time consuming.
27 31
28 * macterm.c (mac_check_for_quit_char, quit_char_comp) 32 * macterm.c (mac_check_for_quit_char, quit_char_comp)
29 (init_quit_char_handler, mac_determine_quit_char_modifiers) 33 (init_quit_char_handler, mac_determine_quit_char_modifiers)
30 (mac_initialize): Added code to check for pressing of quit_char 34 (mac_initialize): Added code to check for pressing of quit_char
31 in the OS event queue 35 in the OS event queue
32 36
33 * mac.c (sys_select): Call mac_check_for_quit_char every second 37 * mac.c (sys_select): Call mac_check_for_quit_char every second
34 while blocking on select. 38 while blocking on select.
35 39
36 * mac.c (sys_read): Use sys_select to test for input first 40 * mac.c (sys_read): Use sys_select to test for input first
37 before calling read to allow C-g to break 41 before calling read to allow C-g to break
38 42