aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorMiles Bader2004-12-14 07:34:55 +0000
committerMiles Bader2004-12-14 07:34:55 +0000
commitdce59e79ab8a6ecc869ceda44d579b8b1e8e10d5 (patch)
treec3da6c32ac0401833eb29b6a4be9cf93febf248e /src/ChangeLog
parent56cc8ca9b68886dc4aae4c8ef44ad5e62b59db49 (diff)
parent734c576596678065b39591128d88609bc6fc5aad (diff)
downloademacs-dce59e79ab8a6ecc869ceda44d579b8b1e8e10d5.tar.gz
emacs-dce59e79ab8a6ecc869ceda44d579b8b1e8e10d5.zip
Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-78
Merge from emacs--cvs-trunk--0 Patches applied: * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-719 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-732 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-733 Update from CVS: man/calc.texi: Fix some TeX definitions. * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-734 Merge from gnus--rel--5.10 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-75 Merge from emacs--cvs-trunk--0 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-76 - miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-77 Update from CVS
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog75
1 files changed, 70 insertions, 5 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 45a69442444..a2706547e77 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,10 +1,76 @@
12004-12-13 Richard M. Stallman <rms@gnu.org>
2
3 * eval.c (syms_of_eval) <quit-flag>: Doc fix.
4
5 * keyboard.c (Vthrow_on_input): New variable.
6 (syms_of_keyboard): Defvar and initialize it.
7 (kbd_buffer_store_event_hold): Handle Vthrow_on_input.
8
9 * lisp.h (QUIT): Check for Vthrow_on_input.
10 (Vthrow_on_input): Declare it.
11
122004-12-13 Kim F. Storm <storm@cua.dk>
13
14 * xdisp.c (set_iterator_to_next): Reset stop_charpos after display
15 vector.
16
172004-12-12 Richard M. Stallman <rms@gnu.org>
18
19 * indent.c (Fvertical_motion): Call move_it_by_lines even if LINES = 0.
20
21 * minibuf.c (Fall_completions): Add var `zero' and use it in loop.
22 (Ftry_completion): Really use outer `zero'; eliminate inner one.
23
242004-12-12 Kenichi Handa <handa@m17n.org>
25
26 * term.c (encode_terminal_code): Fix previous change.
27
282004-12-11 Stefan Monnier <monnier@iro.umontreal.ca>
29
30 * keyboard.c (handle_async_input): Remove pthread mutex handling.
31 (input_available_signal): Move pthread thingy to !SYNC_INPUT branch.
32
33 * syntax.c (Fforward_word): Avoid non-idempotent side-effects
34 in macro arguments.
35
36 * minibuf.c (Ftry_completion, Fall_completions): Don't use
37 XFASTINT blindly.
38
39 * emacs.c (main, Fdump_emacs): Don't touch malloc hooks if SYNC_INPUT.
40
412004-12-11 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
42
43 * w32term.c (x_calc_absolute_position): Remove calculation of
44 difference between inner and outer window. Don't subtract difference
45 for left and top calculations.
46
47 * xterm.c (x_calc_absolute_position): Don't subtract outer_pixel_diff
48 for left and top calculations. Remove call to x_real_positions.
49 [Bug report by Drew Adams in November]
50 (x_check_expected_move): Do not set change_gravity to 1 when calling
51 x_set_offset.
52
532004-12-08 Richard M. Stallman <rms@gnu.org>
54
55 * xdisp.c (get_next_display_element): Use `escape-glyph' for
56 control chars and escaped octal codes.
57 (Qescape_glyph): New variable.
58 (syms_of_xdisp): Initialize it.
59 (escape_glyph_face): New variable.
60 (redisplay_window): Initialize it.
61
622004-12-07 Paul Eggert <eggert@cs.ucla.edu>
63
64 * image.c (our_fill_input_buffer, jpeg_load, CHECK_LIB_AVAILABLE)
65 (init_image): Use 1 rather than TRUE. TRUE's not always defined.
66
12004-12-07 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> 672004-12-07 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
2 68
3 * emacs.c (Fdump_emacs): Add ! defined (SYSTEM_MALLOC) around 69 * emacs.c (Fdump_emacs): Add ! defined (SYSTEM_MALLOC) around
4 reset_malloc_hooks. 70 reset_malloc_hooks.
5 71
6 * keyboard.c (handle_async_input, input_available_signal): Add 72 * keyboard.c (handle_async_input, input_available_signal):
7 ! defined (SYSTEM_MALLOC) around thread code. 73 Add ! defined (SYSTEM_MALLOC) around thread code.
8 74
9 * alloc.c: Add comment about the reason for (UN)BLOCK_INPUT_ALLOC. 75 * alloc.c: Add comment about the reason for (UN)BLOCK_INPUT_ALLOC.
10 76
@@ -42,12 +108,11 @@
42 * emacs.c (Fdump_emacs): Call reset_malloc_hooks. 108 * emacs.c (Fdump_emacs): Call reset_malloc_hooks.
43 109
44 * keyboard.c: Conditionally include pthread.h 110 * keyboard.c: Conditionally include pthread.h
45 (handle_async_inpu, input_available_signalt): If not in the main 111 (handle_async_input, input_available_signalt): If not in the main
46 thread, block signal, send signal to main thread and return. 112 thread, block signal, send signal to main thread and return.
47 113
48 * gtkutil.c (xg_get_file_with_chooser): Handle local files only. 114 * gtkutil.c (xg_get_file_with_chooser): Handle local files only.
49 Set current folder in file chooser if default_filename is a 115 Set current folder in file chooser if default_filename is a directory.
50 directory.
51 116
522004-12-05 Stefan Monnier <monnier@iro.umontreal.ca> 1172004-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
53 118