summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2004-12-11 22:06:17 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2004-12-11 22:06:17 +0000
commit6f8ffb88696242427b77a0b1e95f10241dfe47d5 (patch)
tree33be219de5b657729128a840d358318391c8d9d8 /src
parent5007cdc96d787af8eab3ec9d5a3e288b6c5b646b (diff)
downloademacs-6f8ffb88696242427b77a0b1e95f10241dfe47d5.tar.gz
*** empty log message ***
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog19
1 files changed, 14 insertions, 5 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 1cfb8e7d5a9..0ab38c57bd8 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,13 @@
+2004-12-11 Stefan Monnier <monnier@iro.umontreal.ca>
+
+ * syntax.c (Fforward_word): Avoid non-idempotent side-effects
+ in macro arguments.
+
+ * minibuf.c (Ftry_completion, Fall_completions): Don't use
+ XFASTINT blindly.
+
+ * emacs.c (main, Fdump_emacs): Don't touch malloc hooks if SYNC_INPUT.
+
2004-12-11 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
* w32term.c (x_calc_absolute_position): Remove calculation of
@@ -28,8 +38,8 @@
* emacs.c (Fdump_emacs): Add ! defined (SYSTEM_MALLOC) around
reset_malloc_hooks.
- * keyboard.c (handle_async_input, input_available_signal): Add
- ! defined (SYSTEM_MALLOC) around thread code.
+ * keyboard.c (handle_async_input, input_available_signal):
+ Add ! defined (SYSTEM_MALLOC) around thread code.
* alloc.c: Add comment about the reason for (UN)BLOCK_INPUT_ALLOC.
@@ -67,12 +77,11 @@
* emacs.c (Fdump_emacs): Call reset_malloc_hooks.
* keyboard.c: Conditionally include pthread.h
- (handle_async_inpu, input_available_signalt): If not in the main
+ (handle_async_input, input_available_signalt): If not in the main
thread, block signal, send signal to main thread and return.
* gtkutil.c (xg_get_file_with_chooser): Handle local files only.
- Set current folder in file chooser if default_filename is a
- directory.
+ Set current folder in file chooser if default_filename is a directory.
2004-12-05 Stefan Monnier <monnier@iro.umontreal.ca>