diff options
| author | Romain Francoise | 2006-09-01 20:49:06 +0000 |
|---|---|---|
| committer | Romain Francoise | 2006-09-01 20:49:06 +0000 |
| commit | 5deb7a514ba2d12953b29fa28bbc74daeaa21c25 (patch) | |
| tree | 4c8e852aae2ab8e32257660fc68f0422ef5fdd5e /src/ChangeLog | |
| parent | a66d9563af5c5d4fc21fd7139455269fcf4eee19 (diff) | |
| download | emacs-5deb7a514ba2d12953b29fa28bbc74daeaa21c25.tar.gz emacs-5deb7a514ba2d12953b29fa28bbc74daeaa21c25.zip | |
Whitespace fixes.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index b4cee64c141..252d8ac13af 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,25 +1,25 @@ | |||
| 1 | 2006-09-01 Martin Rudalics <rudalics@gmx.at> | 1 | 2006-09-01 Martin Rudalics <rudalics@gmx.at> |
| 2 | 2 | ||
| 3 | * buffer.h (struct buffer_text): New field chars_modiff. | 3 | * buffer.h (struct buffer_text): New field chars_modiff. |
| 4 | (CHARS_MODIFF, BUF_CHARS_MODIFF): New macros. | 4 | (CHARS_MODIFF, BUF_CHARS_MODIFF): New macros. |
| 5 | * buffer.c (Fbuffer_chars_modified_tick): New function returning | 5 | * buffer.c (Fbuffer_chars_modified_tick): New function returning |
| 6 | value of BUF_CHARS_MODIFF. | 6 | value of BUF_CHARS_MODIFF. |
| 7 | (syms_of_buffer): Defsubr it. | 7 | (syms_of_buffer): Defsubr it. |
| 8 | (Fget_buffer_create): Initialize BUF_CHARS_MODIFF. | 8 | (Fget_buffer_create): Initialize BUF_CHARS_MODIFF. |
| 9 | * insdel.c (modify_region): New argument preserve_chars_modiff. | 9 | * insdel.c (modify_region): New argument preserve_chars_modiff. |
| 10 | Set CHARS_MODIFF to MODIFF provided preserve_chars_modiff is zero. | 10 | Set CHARS_MODIFF to MODIFF provided preserve_chars_modiff is zero. |
| 11 | (insert_1_both, insert_from_string_1, insert_from_buffer_1) | 11 | (insert_1_both, insert_from_string_1, insert_from_buffer_1) |
| 12 | (adjust_after_replace, adjust_after_replace_noundo) | 12 | (adjust_after_replace, adjust_after_replace_noundo) |
| 13 | (replace_range, replace_range_2, del_range_2): Reset CHARS_MODIFF. | 13 | (replace_range, replace_range_2, del_range_2): Reset CHARS_MODIFF. |
| 14 | * lisp.h (modify_region): Add fourth argument in extern. | 14 | * lisp.h (modify_region): Add fourth argument in extern. |
| 15 | * casefiddle.c (casify_region): Call modify_region with fourth | 15 | * casefiddle.c (casify_region): Call modify_region with fourth |
| 16 | argument zero to assert that CHARS_MODIFF is updated. | 16 | argument zero to assert that CHARS_MODIFF is updated. |
| 17 | * editfns.c (Fsubst_char_in_region, Ftranslate_region_internal) | 17 | * editfns.c (Fsubst_char_in_region, Ftranslate_region_internal) |
| 18 | (Ftranspose_regions): Likewise. | 18 | (Ftranspose_regions): Likewise. |
| 19 | * textprop.c (Fadd_text_properties, Fset_text_properties) | 19 | * textprop.c (Fadd_text_properties, Fset_text_properties) |
| 20 | (Fremove_text_properties, Fremove_list_of_text_properties): | 20 | (Fremove_text_properties, Fremove_list_of_text_properties): |
| 21 | Call modify_region with fourth argument 1 to avoid that | 21 | Call modify_region with fourth argument 1 to avoid that |
| 22 | CHARS_MODIFF is updated. | 22 | CHARS_MODIFF is updated. |
| 23 | 23 | ||
| 24 | 2006-08-31 Richard Stallman <rms@gnu.org> | 24 | 2006-08-31 Richard Stallman <rms@gnu.org> |
| 25 | 25 | ||