Mercurial > emacs
changeset 58901:40bfa1ceae4a
*** empty log message ***
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Sat, 11 Dec 2004 22:06:17 +0000 |
parents | 96433f173a6e |
children | e1ad27c7a13c |
files | lisp/ChangeLog src/ChangeLog |
diffstat | 2 files changed, 22 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Sat Dec 11 22:06:00 2004 +0000 +++ b/lisp/ChangeLog Sat Dec 11 22:06:17 2004 +0000 @@ -1,3 +1,11 @@ +2004-12-11 Stefan Monnier <monnier@iro.umontreal.ca> + + * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments) + (checkdoc-message-text, checkdoc-defun): Fix format messages for `error'. + + * textmodes/tex-mode.el (latex-backward-sexp-1): Handle the special + case of \end{verbatim}. + 2004-12-11 Dan Nicolaescu <dann@ics.uci.edu> * term.el (term-termcap-format): Synchronyze with terminfo.
--- a/src/ChangeLog Sat Dec 11 22:06:00 2004 +0000 +++ b/src/ChangeLog Sat Dec 11 22:06:17 2004 +0000 @@ -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>