comparison src/ChangeLog @ 51832:69b46262cd92

*** empty log message ***
author Stefan Monnier <monnier@iro.umontreal.ca>
date Wed, 09 Jul 2003 14:29:11 +0000
parents 94d3cf9e9e14
children 7e28afbbaec0
comparison
equal deleted inserted replaced
51831:b1326ab47cbe 51832:69b46262cd92
1 2003-07-08 Stefan Monnier <monnier@cs.yale.edu>
2
3 * buffer.c (report_overlay_modification): Don't run hooks while
4 traversing the list of overlays.
5
6 * buffer.h (struct buffer): Use an int for overlay_center.
7 (overlays_at, evaporate_overlays, recenter_overlay_lists)
8 (overlay_strings, fix_overlays_before): Use EMACS_INT for positions.
9
10 * buffer.c (reset_buffer, recenter_overlay_lists)
11 (adjust_overlays_for_insert, adjust_overlays_for_delete)
12 (fix_overlays_in_range, Fmake_overlay, Fmove_overlay)
13 (evaporate_overlays, init_buffer_once): Update use of overlay_center.
14 (overlays_at, evaporate_overlays, recenter_overlay_lists)
15 (overlay_strings, fix_overlays_before): Use EMACS_INT for positions.
16
17 * xdisp.c (fast_find_position): Remove unused var.
18
19 * cmds.c (Qexpand_abbrev): New sym.
20 (syms_of_cmds): Initialize it.
21 (internal_self_insert): Use it to call expand-abbrev.
22
1 2003-07-09 Kim F. Storm <storm@cua.dk> 23 2003-07-09 Kim F. Storm <storm@cua.dk>
2 24
3 * xterm.c (use_xim) [!USE_XIM]: Default to disable XIM if emacs 25 * xterm.c (use_xim) [!USE_XIM]: Default to disable XIM if emacs
4 was configured with --without-xim. 26 was configured with --without-xim.
5 (x_term_init) [!USE_XIM]: Use `useXIM' resource to turn on XIM. 27 (x_term_init) [!USE_XIM]: Use `useXIM' resource to turn on XIM.
13 2003-07-07 Nozomu Ando <nand@mac.com> (tiny change) 35 2003-07-07 Nozomu Ando <nand@mac.com> (tiny change)
14 36
15 * buffer.c (Fkill_buffer): Clear charpos cache if necessary. 37 * buffer.c (Fkill_buffer): Clear charpos cache if necessary.
16 38
17 2003-07-06 Stefan Monnier <monnier@cs.yale.edu> 39 2003-07-06 Stefan Monnier <monnier@cs.yale.edu>
40
41 * minibuf.c (read_minibuf): UNGCPRO before returning.
42 (Ftry_completion, Fall_completions): Doc fix.
18 43
19 * alloc.c (live_float_p): Check that p is not past the `floats' array, 44 * alloc.c (live_float_p): Check that p is not past the `floats' array,
20 now that `floats' is not the last element of the struct any more. 45 now that `floats' is not the last element of the struct any more.
21 46
22 2003-07-06 Jason Rumney <jasonr@gnu.org> 47 2003-07-06 Jason Rumney <jasonr@gnu.org>