diff options
| author | Eli Zaretskii | 2010-09-25 09:21:20 -0400 |
|---|---|---|
| committer | Eli Zaretskii | 2010-09-25 09:21:20 -0400 |
| commit | 2452438f0cc613f65a944d7043fa6abe32ec17a0 (patch) | |
| tree | fa732a5082977a0d909cc057c5ac630671ae247e /src/ChangeLog | |
| parent | e70153eb2fec2f9af9089feb98739b8f9385250d (diff) | |
| download | emacs-2452438f0cc613f65a944d7043fa6abe32ec17a0.tar.gz emacs-2452438f0cc613f65a944d7043fa6abe32ec17a0.zip | |
Fix int/EMACS_INT use in textprop.c and window.c.
window.c (Fpos_visible_in_window_p, Fdelete_other_windows)
(Fselect_window, window_scroll_pixel_based)
(window_scroll_line_based, Frecenter, Fset_window_configuration):
Use EMACS_INT for buffer positions.
textprop.c (validate_interval_range, interval_of)
(property_change_between_p, Fadd_text_properties)
(set_text_properties_1, Fremove_text_properties)
(Fremove_list_of_text_properties, Ftext_property_any)
(Ftext_property_not_all, copy_text_properties)
(text_property_list, extend_property_ranges)
(verify_interval_modification): Use EMACS_INT for buffer
positions.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 08e0adb7999..d54e7e7218f 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,19 @@ | |||
| 1 | 2010-09-25 Eli Zaretskii <eliz@gnu.org> | 1 | 2010-09-25 Eli Zaretskii <eliz@gnu.org> |
| 2 | 2 | ||
| 3 | * window.c (Fpos_visible_in_window_p, Fdelete_other_windows) | ||
| 4 | (Fselect_window, window_scroll_pixel_based) | ||
| 5 | (window_scroll_line_based, Frecenter, Fset_window_configuration): | ||
| 6 | Use EMACS_INT for buffer positions. | ||
| 7 | |||
| 8 | * textprop.c (validate_interval_range, interval_of) | ||
| 9 | (property_change_between_p, Fadd_text_properties) | ||
| 10 | (set_text_properties_1, Fremove_text_properties) | ||
| 11 | (Fremove_list_of_text_properties, Ftext_property_any) | ||
| 12 | (Ftext_property_not_all, copy_text_properties) | ||
| 13 | (text_property_list, extend_property_ranges) | ||
| 14 | (verify_interval_modification): Use EMACS_INT for buffer | ||
| 15 | positions. | ||
| 16 | |||
| 3 | * term.c (fast_find_position, term_mouse_highlight): Use EMACS_INT | 17 | * term.c (fast_find_position, term_mouse_highlight): Use EMACS_INT |
| 4 | for buffer positions. | 18 | for buffer positions. |
| 5 | 19 | ||