aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2011-03-07 20:37:19 -0800
committerPaul Eggert2011-03-07 20:37:19 -0800
commit2735d0606bd871584b2e6343f3dce4c1a155b296 (patch)
treee9068d2b26d01760d14b97c0fe28f3cbca7886d5 /src/ChangeLog
parentf38b440c4b40777c25631323f2501ffb5ba98251 (diff)
downloademacs-2735d0606bd871584b2e6343f3dce4c1a155b296.tar.gz
emacs-2735d0606bd871584b2e6343f3dce4c1a155b296.zip
* coding.c (Fdefine_coding_system_internal): Don't redeclare 'i' inside
a block, when the outer 'i' will do. (decode_coding_utf_8, decode_coding_utf_16, detect_coding_emacs_mule): (emacs_mule_char, decode_coding_emacs_mule, detect_coding_iso_2022): (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5): (decode_coding_raw_text, decode_coding_charset, get_translation_table): (Fdecode_sjis_char, Fdefine_coding_system_internal): Rename locals to avoid shadowing. * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index b88ff2ccbb4..bbcc067fecd 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -41,6 +41,15 @@
41 * coding.c (coding_set_source, coding_set_destination): 41 * coding.c (coding_set_source, coding_set_destination):
42 Use "else { /* comment */ }" rather than "else /* comment */;" 42 Use "else { /* comment */ }" rather than "else /* comment */;"
43 for clarity, and to avoid gcc -Wempty-body warning. 43 for clarity, and to avoid gcc -Wempty-body warning.
44 (Fdefine_coding_system_internal): Don't redeclare 'i' inside
45 a block, when the outer 'i' will do.
46 (decode_coding_utf_8, decode_coding_utf_16, detect_coding_emacs_mule):
47 (emacs_mule_char, decode_coding_emacs_mule, detect_coding_iso_2022):
48 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5):
49 (decode_coding_raw_text, decode_coding_charset, get_translation_table):
50 (Fdecode_sjis_char, Fdefine_coding_system_internal):
51 Rename locals to avoid shadowing.
52 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
44 53
452011-03-06 Chong Yidong <cyd@stupidchicken.com> 542011-03-06 Chong Yidong <cyd@stupidchicken.com>
46 55