diff options
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 84 |
1 files changed, 83 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 52426939562..955c8929f92 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,85 @@ | |||
| 1 | 2004-09-14 Stefan <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * fileio.c (Finsert_file_contents): Fix case of replacement in a | ||
| 4 | narrowed buffer. | ||
| 5 | |||
| 6 | 2004-09-14 Kim F. Storm <storm@cua.dk> | ||
| 7 | |||
| 8 | * puresize.h (PURESIZE_RATIO): Define based on BITS_PER_EMACS_INT. | ||
| 9 | |||
| 10 | * xfaces.c (Qface_no_inherit): New var. | ||
| 11 | (syms_of_xfaces): Intern and staticpro it. | ||
| 12 | (Finternal_make_lisp_face, Finternal_set_lisp_face_attribute) | ||
| 13 | (Finternal_copy_lisp_face, update_face_from_frame_parameter): | ||
| 14 | Don't increment face_change_count when face has non-nil | ||
| 15 | face-no-inherit property. | ||
| 16 | |||
| 17 | 2004-09-13 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 18 | |||
| 19 | * bytecode.c (BYTE_CODE_QUIT): Add missing AFTER_POTENTIAL_GC. | ||
| 20 | (Fbyte_code): Remove dead code after `wrong_type_argument'. | ||
| 21 | |||
| 22 | * alloc.c (Fgarbage_collect): Mark keyboards, gtk data, and specpdl | ||
| 23 | before doing the mark_stack_check_gcpros since they are not on the stack. | ||
| 24 | |||
| 25 | 2004-09-12 Kim F. Storm <storm@cua.dk> | ||
| 26 | |||
| 27 | * editfns.c (Fformat): Handle format strings with multiple text | ||
| 28 | properties. Reverse text property list from the format string, | ||
| 29 | so the positions are in increasing order. | ||
| 30 | |||
| 31 | 2004-09-10 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> | ||
| 32 | |||
| 33 | * xselect.c (x_reply_selection_request): XSync and UNBLOCK before | ||
| 34 | x_uncatch_errors so that possible protocol errors are delivered. | ||
| 35 | |||
| 36 | 2004-09-10 Eli Zaretskii <eliz@gnu.org> | ||
| 37 | |||
| 38 | * Makefile.in (msdos.o): Depend on buffer.h, commands.h, and | ||
| 39 | blockinput.h. | ||
| 40 | (dosfns.o): Depend on blockinput.h, window.h, dispextern.h, | ||
| 41 | charset.h, and coding.h | ||
| 42 | (w16select.o): Depend on buffer.h, charset.h, coding.h, and | ||
| 43 | composite.h. | ||
| 44 | (term.o): Depend on window.h and keymap.h. | ||
| 45 | (abbrev.o): Depend on syntax.h. | ||
| 46 | (callint.o): Depend on keymap.h. | ||
| 47 | (casefiddle.o): Depend on charset.h and keymap.h. | ||
| 48 | (category.o): Depend on keymap.h. | ||
| 49 | (coding.o): Depend on dispextern.h. | ||
| 50 | (cmds.o): Depend on keyboard.h and keymap.h. | ||
| 51 | (dispnew.o): Depend on indent.h and intervals.h. | ||
| 52 | (doc.o): Depend on keymap.h. | ||
| 53 | (editfns.o): Depend on frame.h. | ||
| 54 | (emacs.o): Depend on dispextern.h. | ||
| 55 | (fileio.o): Don't depend on ccl.h. | ||
| 56 | (filelock.o): Depend on charset.h and coding.h. | ||
| 57 | (frame.o): Depend on w32term.h and macterm.h. | ||
| 58 | (insdel.o): Depend on region-cache.h. | ||
| 59 | (keyboard.o): Depend on keymap.h, w32term.h, and macterm.h. | ||
| 60 | (minibuf.o): Depend on $(INTERVALS_SRC) and keymap.h. | ||
| 61 | (search.o): Depend on $(INTERVALS_SRC). | ||
| 62 | (syntax.o): Depend on keymap.h, regex.h, and $(INTERVALS_SRC). | ||
| 63 | (window.o): Depend on keymap.h, blockinput.h, $(INTERVALS_SRC), | ||
| 64 | xterm.h, w32term.h, and macterm.h. | ||
| 65 | (xdisp.o): Depend on keyboard.h, $(INTERVALS_SRC), xterm.h, | ||
| 66 | w32term.h, and macterm.h. | ||
| 67 | (xfaces.o): Depend on keyboard.h, $(INTERVALS_SRC), | ||
| 68 | region-cache.h, xterm.h, w32term.h, and macterm.h. | ||
| 69 | (bytecode.o): Depend on dispextern.h, frame.h, and xterm.h. | ||
| 70 | (data.o): Depend on frame.h. | ||
| 71 | (fns.o): Depend on keymap.h, xterm.h, and blockinput.h. | ||
| 72 | (print.o): Depend on termchar.h and $(INTERVALS_SRC). | ||
| 73 | (lread.o): Depend on $(INTERVALS_SRC), termhooks.h, and coding.h. | ||
| 74 | (intervals.o): Depend on keymap.h. | ||
| 75 | |||
| 76 | * msdos.c (msdos_set_cursor_shape, IT_display_cursor): Add | ||
| 77 | debugging print-out to termscript. | ||
| 78 | |||
| 79 | 2004-09-09 Richard M. Stallman <rms@gnu.org> | ||
| 80 | |||
| 81 | * xdisp.c (decode_mode_spec): Use current buffer for most purposes. | ||
| 82 | |||
| 1 | 2004-09-08 Richard M. Stallman <rms@gnu.org> | 83 | 2004-09-08 Richard M. Stallman <rms@gnu.org> |
| 2 | 84 | ||
| 3 | * window.c (Fset_window_buffer): Doc fix. | 85 | * window.c (Fset_window_buffer): Doc fix. |
| @@ -12446,7 +12528,7 @@ | |||
| 12446 | 12528 | ||
| 12447 | 2002-02-15 Andreas Schwab <schwab@suse.de> | 12529 | 2002-02-15 Andreas Schwab <schwab@suse.de> |
| 12448 | 12530 | ||
| 12449 | * puresize.h (BASE_PURESIZE): Increase to 9/5. | 12531 | * puresize.h (PURESIZE_RATIO): Increase to 9/5. |
| 12450 | 12532 | ||
| 12451 | * alloc.c (NSTATICS): Increase to 1280. | 12533 | * alloc.c (NSTATICS): Increase to 1280. |
| 12452 | 12534 | ||