Changeset 1691
- Timestamp:
- 02/17/98 01:45:18 (11 years ago)
- Files:
-
- branches/GNU/src/w32menu.c (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/GNU/src/w32menu.c
r1681 r1691 30 30 #include "blockinput.h" 31 31 #include "buffer.h" 32 #include "charset.h"33 #include "coding.h"34 32 35 33 /* This may include sys/types.h, and that somehow loses … … 1238 1236 #ifndef HAVE_MULTILINGUAL_MENU 1239 1237 if (STRINGP (pane_name) && STRING_MULTIBYTE (pane_name)) 1240 pane_name = ENCODE_SYSTEM(pane_name);1238 pane_name = string_make_unibyte (pane_name); 1241 1239 #endif 1242 1240 pane_string = (NILP (pane_name) … … 1280 1278 #ifndef HAVE_MULTILINGUAL_MENU 1281 1279 if (STRING_MULTIBYTE (item_name)) 1282 item_name = ENCODE_SYSTEM(item_name);1280 item_name = string_make_unibyte (item_name); 1283 1281 if (STRINGP (descrip) && STRING_MULTIBYTE (descrip)) 1284 descrip = ENCODE_SYSTEM(descrip);1282 descrip = string_make_unibyte (descrip); 1285 1283 #endif 1286 1284 wv = xmalloc_widget_value (); … … 1683 1681 #ifndef HAVE_MULTILINGUAL_MENU 1684 1682 if (!NILP (pane_name) && STRING_MULTIBYTE (pane_name)) 1685 pane_name = ENCODE_SYSTEM(pane_name);1683 pane_name = string_make_unibyte (pane_name); 1686 1684 #endif 1687 1685 pane_string = (NILP (pane_name) … … 1760 1758 #ifndef HAVE_MULTILINGUAL_MENU 1761 1759 if (STRING_MULTIBYTE (title)) 1762 title = ENCODE_SYSTEM(title);1760 title = string_make_unibyte (title); 1763 1761 #endif 1764 1762 wv_title->name = (char *) XSTRING (title)->data;
