]> git.eshelyaron.com Git - emacs.git/commitdiff
(DECODE_SYSTEM): Fix argument name; name->str.
authorKenichi Handa <handa@m17n.org>
Thu, 27 Oct 2005 00:45:44 +0000 (00:45 +0000)
committerKenichi Handa <handa@m17n.org>
Thu, 27 Oct 2005 00:45:44 +0000 (00:45 +0000)
src/ChangeLog
src/coding.h

index d4ba5c96723a90643da849953669d8ef490629c3..297a23fe7801d2a0dee5490c02f00f6868db0da8 100644 (file)
@@ -1,3 +1,21 @@
+2005-10-27  Kenichi Handa  <handa@m17n.org>
+
+       * coding.h (DECODE_SYSTEM): Fix argument name; name->str.
+
+2005-10-24  Kenichi Handa  <handa@m17n.org>
+
+       * 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  <jasonr@gnu.org>
 
        * w32fns.c (w32_to_x_font): Avoid forcing font widths.
index 1ea1dafd54b37753f7ee43a2aa018d6a808a453b..9a158ef5ffb9ec0c4e057aa988c7718a97457319 100644 (file)
@@ -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)         \