From: Kenichi Handa Date: Thu, 27 Oct 2005 00:45:44 +0000 (+0000) Subject: (DECODE_SYSTEM): Fix argument name; name->str. X-Git-Tag: emacs-pretest-22.0.90~6273 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=581e742781883016f7c612b59b225a1bcb1fa36f;p=emacs.git (DECODE_SYSTEM): Fix argument name; name->str. --- diff --git a/src/ChangeLog b/src/ChangeLog index d4ba5c96723..297a23fe780 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,21 @@ +2005-10-27 Kenichi Handa + + * coding.h (DECODE_SYSTEM): Fix argument name; name->str. + +2005-10-24 Kenichi Handa + + * charset.h (charset_mule_unicode_0100_24ff) + (charset_mule_unicode_2500_33ff, charset_mule_unicode_e000_ffff): + Extern them. + + * charset.c (charset_mule_unicode_0100_24ff) + (charset_mule_unicode_2500_33ff, charset_mule_unicode_e000_ffff): + New variables. + (Fsetup_special_charsets): Initialize them. + + * xterm.c (handle_one_xevent): Handle keysyms directly mapped to + supported Unicode characters. + 2005-10-25 Jason Rumney * 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 /* Decode the string STR using the specified coding system for system functions, if any. */ -#define DECODE_SYSTEM(name) \ +#define DECODE_SYSTEM(str) \ (! NILP (Vlocale_coding_system) \ && !EQ (Vlocale_coding_system, make_number (0)) \ ? code_convert_string_norecord (str, Vlocale_coding_system, 0) \