diff options
| author | Stefan Monnier | 2003-07-09 14:29:11 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2003-07-09 14:29:11 +0000 |
| commit | 0481292973f0b2e75393b580a643811233bf2e68 (patch) | |
| tree | e5dec88f99b25bf4ff27e2b8fcd5071a59be33dc /src | |
| parent | 94b562dc87b34607a60d4f20e0fd7f100aa5590e (diff) | |
| download | emacs-0481292973f0b2e75393b580a643811233bf2e68.tar.gz emacs-0481292973f0b2e75393b580a643811233bf2e68.zip | |
*** empty log message ***
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 6bbc7842767..c23a1cebe41 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,25 @@ | |||
| 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 |
| @@ -16,6 +38,9 @@ | |||
| 16 | 38 | ||
| 17 | 2003-07-06 Stefan Monnier <monnier@cs.yale.edu> | 39 | 2003-07-06 Stefan Monnier <monnier@cs.yale.edu> |
| 18 | 40 | ||
| 41 | * minibuf.c (read_minibuf): UNGCPRO before returning. | ||
| 42 | (Ftry_completion, Fall_completions): Doc fix. | ||
| 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 | ||