diff options
| author | Eli Zaretskii | 2010-09-22 12:03:34 -0400 |
|---|---|---|
| committer | Eli Zaretskii | 2010-09-22 12:03:34 -0400 |
| commit | 413d18e73de161f0618926ef73d170a7ef5c7a2f (patch) | |
| tree | 874e4eac4e7b0843c67ad0969d5c945cb8c8639c /src/ChangeLog | |
| parent | 7390c1cdc8f29150299000e566de15e8e2432efa (diff) | |
| download | emacs-413d18e73de161f0618926ef73d170a7ef5c7a2f.tar.gz emacs-413d18e73de161f0618926ef73d170a7ef5c7a2f.zip | |
Fix some uses of int instead of EMACS_INT.
minibuf.c (Fminibuffer_contents)
(Fminibuffer_contents_no_properties)
(Fminibuffer_completion_contents): Use EMACS_INT for minibuffer
positions.
keyboard.c (command_loop_1): Use EMACS_INT to compare point with
mark.
alloc.c (make_uninit_string, make_uninit_multibyte_string)
(allocate_string_data): Accept EMACS_INT for string length.
editfns.c (Ffield_string, Ffield_string_no_properties)
(make_buffer_string, make_buffer_string_both, Fbuffer_substring)
(Fbuffer_substring_no_properties, find_field, Fdelete_field)
(Ffield_string, Ffield_string_no_properties, Ffield_beginning)
(Ffield_end): Use EMACS_INT for buffer positions.
insdel.c (prepare_to_modify_buffer): Use EMACS_INT to compare
point with mark.
lisp.h (allocate_string_data, make_uninit_string)
(make_uninit_multibyte_string, make_buffer_string)
(make_buffer_string_both): Adjust prototypes.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 4b3e76f851d..6bb13eaa088 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,29 @@ | |||
| 1 | 2010-09-22 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * minibuf.c (Fminibuffer_contents) | ||
| 4 | (Fminibuffer_contents_no_properties) | ||
| 5 | (Fminibuffer_completion_contents): Use EMACS_INT for minibuffer | ||
| 6 | positions. | ||
| 7 | |||
| 8 | * keyboard.c (command_loop_1): Use EMACS_INT to compare point with | ||
| 9 | mark. | ||
| 10 | |||
| 11 | * alloc.c (make_uninit_string, make_uninit_multibyte_string) | ||
| 12 | (allocate_string_data): Accept EMACS_INT for string length. | ||
| 13 | |||
| 14 | * editfns.c (Ffield_string, Ffield_string_no_properties) | ||
| 15 | (make_buffer_string, make_buffer_string_both, Fbuffer_substring) | ||
| 16 | (Fbuffer_substring_no_properties, find_field, Fdelete_field) | ||
| 17 | (Ffield_string, Ffield_string_no_properties, Ffield_beginning) | ||
| 18 | (Ffield_end): Use EMACS_INT for buffer positions. | ||
| 19 | |||
| 20 | * insdel.c (prepare_to_modify_buffer): Use EMACS_INT to compare | ||
| 21 | point with mark. | ||
| 22 | |||
| 23 | * lisp.h (allocate_string_data, make_uninit_string) | ||
| 24 | (make_uninit_multibyte_string, make_buffer_string) | ||
| 25 | (make_buffer_string_both): Adjust prototypes. | ||
| 26 | |||
| 1 | 2010-09-22 Chong Yidong <cyd@stupidchicken.com> | 27 | 2010-09-22 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 28 | ||
| 3 | * xml.c: Switch to GNU indentation. | 29 | * xml.c: Switch to GNU indentation. |