aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa2005-10-27 00:45:44 +0000
committerKenichi Handa2005-10-27 00:45:44 +0000
commit581e742781883016f7c612b59b225a1bcb1fa36f (patch)
tree4acd8b97e23f1e7ce24d7c0e23f8896df623b492 /src
parent4cec63a9edaf722cf0e3afb6af207ffe8f1575e9 (diff)
downloademacs-581e742781883016f7c612b59b225a1bcb1fa36f.tar.gz
emacs-581e742781883016f7c612b59b225a1bcb1fa36f.zip
(DECODE_SYSTEM): Fix argument name; name->str.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog18
-rw-r--r--src/coding.h2
2 files changed, 19 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index d4ba5c96723..297a23fe780 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,21 @@
12005-10-27 Kenichi Handa <handa@m17n.org>
2
3 * coding.h (DECODE_SYSTEM): Fix argument name; name->str.
4
52005-10-24 Kenichi Handa <handa@m17n.org>
6
7 * charset.h (charset_mule_unicode_0100_24ff)
8 (charset_mule_unicode_2500_33ff, charset_mule_unicode_e000_ffff):
9 Extern them.
10
11 * charset.c (charset_mule_unicode_0100_24ff)
12 (charset_mule_unicode_2500_33ff, charset_mule_unicode_e000_ffff):
13 New variables.
14 (Fsetup_special_charsets): Initialize them.
15
16 * xterm.c (handle_one_xevent): Handle keysyms directly mapped to
17 supported Unicode characters.
18
12005-10-25 Jason Rumney <jasonr@gnu.org> 192005-10-25 Jason Rumney <jasonr@gnu.org>
2 20
3 * w32fns.c (w32_to_x_font): Avoid forcing font widths. 21 * w32fns.c (w32_to_x_font): Avoid forcing font widths.
diff --git a/src/coding.h b/src/coding.h
index 1ea1dafd54b..9a158ef5ffb 100644
--- a/src/coding.h
+++ b/src/coding.h
@@ -601,7 +601,7 @@ struct coding_system
601 601
602/* Decode the string STR using the specified coding system 602/* Decode the string STR using the specified coding system
603 for system functions, if any. */ 603 for system functions, if any. */
604#define DECODE_SYSTEM(name) \ 604#define DECODE_SYSTEM(str) \
605 (! NILP (Vlocale_coding_system) \ 605 (! NILP (Vlocale_coding_system) \
606 && !EQ (Vlocale_coding_system, make_number (0)) \ 606 && !EQ (Vlocale_coding_system, make_number (0)) \
607 ? code_convert_string_norecord (str, Vlocale_coding_system, 0) \ 607 ? code_convert_string_norecord (str, Vlocale_coding_system, 0) \