diff options
| author | Paul Eggert | 2013-02-25 19:09:08 -0800 |
|---|---|---|
| committer | Paul Eggert | 2013-02-25 19:09:08 -0800 |
| commit | ecc0fdd49ea4351c229f7db243d26360604e758c (patch) | |
| tree | 04c9f8c066278146722112ec56bdff51a22991ae /src/ChangeLog | |
| parent | 9f70f91e94a4c855d7ff8a98cf948f24e0f3eb31 (diff) | |
| download | emacs-ecc0fdd49ea4351c229f7db243d26360604e758c.tar.gz emacs-ecc0fdd49ea4351c229f7db243d26360604e758c.zip | |
Minor textprop integer cleanup.
* intervals.h, textprop.c (add_text_properties_from_list):
Return void, not int, since nobody uses the return value.
* textprop.c (validate_plist, add_properties, remove_properties)
(Fadd_text_properties):
Don't assume list length fits in int.
(interval_has_all_properties, interval_has_some_properties)
(interval_has_some_properties_list, add_properties, remove_properties)
(Fadd_text_properties, Fremove_text_properties)
(Fremove_list_of_text_properties, text_property_stickiness):
Use bool for booleans.
(Fadd_text_properties, Fremove_text_properties):
(Fremove_list_of_text_properties):
Reindent do-while as per GNU style.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 135d4d48b41..8636e36962e 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,20 @@ | |||
| 1 | 2013-02-26 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | Minor textprop integer cleanup. | ||
| 4 | * intervals.h, textprop.c (add_text_properties_from_list): | ||
| 5 | Return void, not int, since nobody uses the return value. | ||
| 6 | * textprop.c (validate_plist, add_properties, remove_properties) | ||
| 7 | (Fadd_text_properties): | ||
| 8 | Don't assume list length fits in int. | ||
| 9 | (interval_has_all_properties, interval_has_some_properties) | ||
| 10 | (interval_has_some_properties_list, add_properties, remove_properties) | ||
| 11 | (Fadd_text_properties, Fremove_text_properties) | ||
| 12 | (Fremove_list_of_text_properties, text_property_stickiness): | ||
| 13 | Use bool for booleans. | ||
| 14 | (Fadd_text_properties, Fremove_text_properties): | ||
| 15 | (Fremove_list_of_text_properties): | ||
| 16 | Reindent do-while as per GNU style. | ||
| 17 | |||
| 1 | 2013-02-25 Eli Zaretskii <eliz@gnu.org> | 18 | 2013-02-25 Eli Zaretskii <eliz@gnu.org> |
| 2 | 19 | ||
| 3 | Implement CLASH_DETECTION for MS-Windows. | 20 | Implement CLASH_DETECTION for MS-Windows. |