aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorEli Zaretskii2011-04-09 19:35:19 +0300
committerEli Zaretskii2011-04-09 19:35:19 +0300
commita53e2e898b96c8024de5a1a413826a6a59dd6b54 (patch)
tree560e6e4b0f16937e8883ac8811e6628c731e9a6f /src/ChangeLog
parent04f33f1ed9cdfed6a3e44a55d333cd19d58424ca (diff)
downloademacs-a53e2e898b96c8024de5a1a413826a6a59dd6b54.tar.gz
emacs-a53e2e898b96c8024de5a1a413826a6a59dd6b54.zip
Replace some uses of `int' with EMACS_INT.
src/search.c (string_match_1, fast_string_match) (fast_c_string_match_ignore_case, fast_string_match_ignore_case) (scan_buffer, find_next_newline_no_quit) (find_before_next_newline, search_command, Freplace_match) (Fmatch_data): Make some `int' variables be EMACS_INT. src/xdisp.c (display_count_lines): 3rd argument and return value now EMACS_INT. All callers changed. (pint2hrstr): Last argument is now EMACS_INT. src/coding.c (detect_coding_utf_8, detect_coding_emacs_mule) (detect_coding_iso_2022, detect_coding_sjis, detect_coding_big5) (detect_coding_ccl, detect_coding_charset, decode_coding_utf_8) (decode_coding_utf_16, decode_coding_emacs_mule) (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5) (decode_coding_ccl, decode_coding_charset) <consumed_chars, consumed_chars_base>: Declare EMACS_INT. (decode_coding_iso_2022, decode_coding_emacs_mule) (decode_coding_sjis, decode_coding_big5, decode_coding_charset) <char_offset, last_offset>: Declare EMACS_INT. (encode_coding_utf_8, encode_coding_utf_16) (encode_coding_emacs_mule, encode_invocation_designation) (encode_designation_at_bol, encode_coding_iso_2022) (encode_coding_sjis, encode_coding_big5, encode_coding_ccl) (encode_coding_raw_text, encode_coding_charset) <produced_chars>: Declare EMACS_INT. (ASSURE_DESTINATION): Declare more_bytes EMACS_INT. (encode_invocation_designation): Last argument P_NCHARS is now EMACS_INT. (decode_eol): Declare pos_byte, pos, and pos_end EMACS_INT. (produce_chars): from_nchars and to_nchars are now EMACS_INT. src/coding.h (struct coding_system) <head_ascii>: Declare EMACS_INT. All users changed. src/ccl.c (Fccl_execute_on_string): Declare some variables EMACS_INT.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index efacbbc4583..64aaf22f781 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,44 @@
12011-04-09 Eli Zaretskii <eliz@emacstest.gnu.org>
2
3 Fix some uses of `int' instead of EMACS_INT.
4 * search.c (string_match_1, fast_string_match)
5 (fast_c_string_match_ignore_case, fast_string_match_ignore_case)
6 (scan_buffer, find_next_newline_no_quit)
7 (find_before_next_newline, search_command, Freplace_match)
8 (Fmatch_data): Make some `int' variables be EMACS_INT.
9
10 * xdisp.c (display_count_lines): 3rd argument and return value now
11 EMACS_INT. All callers changed.
12 (pint2hrstr): Last argument is now EMACS_INT.
13
14 * coding.c (detect_coding_utf_8, detect_coding_emacs_mule)
15 (detect_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
16 (detect_coding_ccl, detect_coding_charset, decode_coding_utf_8)
17 (decode_coding_utf_16, decode_coding_emacs_mule)
18 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
19 (decode_coding_ccl, decode_coding_charset)
20 <consumed_chars, consumed_chars_base>: Declare EMACS_INT.
21 (decode_coding_iso_2022, decode_coding_emacs_mule)
22 (decode_coding_sjis, decode_coding_big5, decode_coding_charset)
23 <char_offset, last_offset>: Declare EMACS_INT.
24 (encode_coding_utf_8, encode_coding_utf_16)
25 (encode_coding_emacs_mule, encode_invocation_designation)
26 (encode_designation_at_bol, encode_coding_iso_2022)
27 (encode_coding_sjis, encode_coding_big5, encode_coding_ccl)
28 (encode_coding_raw_text, encode_coding_charset) <produced_chars>:
29 Declare EMACS_INT.
30 (ASSURE_DESTINATION): Declare more_bytes EMACS_INT.
31 (encode_invocation_designation): Last argument P_NCHARS is now
32 EMACS_INT.
33 (decode_eol): Declare pos_byte, pos, and pos_end EMACS_INT.
34 (produce_chars): from_nchars and to_nchars are now EMACS_INT.
35
36 * coding.h (struct coding_system) <head_ascii>: Declare EMACS_INT.
37 All users changed.
38
39 * ccl.c (Fccl_execute_on_string): Declare some variables
40 EMACS_INT.
41
12011-04-08 Svante Signell <svante.signell@telia.com> (tiny change) 422011-04-08 Svante Signell <svante.signell@telia.com> (tiny change)
2 43
3 * term.c (init_tty): Fix incorrect ifdef placement (Bug#8450). 44 * term.c (init_tty): Fix incorrect ifdef placement (Bug#8450).