diff options
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 669808a3a5f..e8b82ec3be3 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,37 @@ | |||
| 1 | 2011-04-16 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | Fix regex.c, syntax.c and friends for buffers > 2GB. | ||
| 4 | * syntax.h (struct gl_state_s): Declare character position members | ||
| 5 | EMACS_INT. | ||
| 6 | |||
| 7 | * syntax.c (update_syntax_table): Declare 2nd argument EMACS_INT. | ||
| 8 | |||
| 9 | * textprop.c (verify_interval_modification, interval_of): Declare | ||
| 10 | arguments EMACS_INT. | ||
| 11 | |||
| 12 | * intervals.c (adjust_intervals_for_insertion): Declare arguments | ||
| 13 | EMACS_INT. | ||
| 14 | |||
| 15 | * intervals.h (CHECK_TOTAL_LENGTH): Cast to EMACS_INT, not `int'. | ||
| 16 | |||
| 17 | * indent.c (Fvertical_motion): Local variable it_start is now | ||
| 18 | EMACS_INT. | ||
| 19 | |||
| 20 | * regex.c (re_match, re_match_2, re_match_2_internal) | ||
| 21 | (bcmp_translate, regcomp, regexec, print_double_string) | ||
| 22 | (group_in_compile_stack, re_search, re_search_2, regex_compile) | ||
| 23 | (re_compile_pattern, re_exec): Declare arguments and local | ||
| 24 | variables `size_t' and `ssize_t' and return values `regoff_t', as | ||
| 25 | appropriate. | ||
| 26 | (POP_FAILURE_REG_OR_COUNT) <pfreg>: Declare `long'. | ||
| 27 | (CHECK_INFINITE_LOOP) <failure>: Declare `ssize_t'. | ||
| 28 | <compile_stack_type>: `size' and `avail' are now `size_t'. | ||
| 29 | |||
| 30 | * regex.h <regoff_t>: Use ssize_t, not int. | ||
| 31 | (re_search, re_search_2, re_match, re_match_2): Arguments that | ||
| 32 | specify buffer/string position and length are now ssize_t and | ||
| 33 | size_t. Return type is regoff_t. | ||
| 34 | |||
| 1 | 2011-04-16 Ben Key <bkey76@gmail.com> | 35 | 2011-04-16 Ben Key <bkey76@gmail.com> |
| 2 | 36 | ||
| 3 | * nsfont.m: Fixed bugs in ns_get_family and | 37 | * nsfont.m: Fixed bugs in ns_get_family and |