]> git.eshelyaron.com Git - emacs.git/commitdiff
(ENCODE_MENU_STRING) [HAVE_X_I18N]: Use ENCODE_SYSTEM.
authorStefan Monnier <monnier@iro.umontreal.ca>
Thu, 17 Mar 2005 01:37:31 +0000 (01:37 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 17 Mar 2005 01:37:31 +0000 (01:37 +0000)
src/xmenu.c

index 0de318323a33c21f61e9b5bf55c0c58dffd2c1c9..0cb0b73b71d6c62c5256cadf235b224ecb88e462 100644 (file)
@@ -137,6 +137,8 @@ static Lisp_Object xdialog_show P_ ((FRAME_PTR, int, Lisp_Object, char **));
 #ifdef USE_GTK
 /* gtk just uses utf-8.  */
 # define ENCODE_MENU_STRING(str) ENCODE_UTF_8 (str)
+#elif defined HAVE_X_I18N
+# define ENCODE_MENU_STRING(str) ENCODE_SYSTEM (str)
 #else
 # define ENCODE_MENU_STRING(str) string_make_unibyte (str)
 #endif