# HG changeset patch # User Gerd Moellmann # Date 991066848 0 # Node ID ca726d19c1be41e4ec289e3a3f77051f9fe2b2d2 # Parent 689e6d3dbdc28a2549c4743d9cdff51cdc8cdb88 (xmenu_show) [!HAVE_MULTILINGUAL_MENU]: Don't overwrite an item's name with its key description in case the description is a multibyte string. diff -r 689e6d3dbdc2 -r ca726d19c1be src/xmenu.c --- a/src/xmenu.c Mon May 28 15:09:44 2001 +0000 +++ b/src/xmenu.c Mon May 28 16:20:48 2001 +0000 @@ -2077,7 +2077,7 @@ if (STRINGP (item_name) && STRING_MULTIBYTE (item_name)) item_name = string_make_unibyte (item_name); if (STRINGP (descrip) && STRING_MULTIBYTE (descrip)) - item_name = string_make_unibyte (descrip); + descrip = string_make_unibyte (descrip); #endif wv = xmalloc_widget_value ();