# HG changeset patch # User Eli Zaretskii # Date 1182017910 0 # Node ID cf89ff54912e2db8c89966786cf874dc597ae658 # Parent 91d0311ee2ccc16b690239f655b8465e7ae1b040 (add_menu_item): Escape `&' characters in menu items and their keybindings. diff -r 91d0311ee2cc -r cf89ff54912e src/w32menu.c --- a/src/w32menu.c Sat Jun 16 12:51:48 2007 +0000 +++ b/src/w32menu.c Sat Jun 16 18:18:30 2007 +0000 @@ -23,6 +23,7 @@ #include #include +#include #include "lisp.h" #include "termhooks.h" #include "keyboard.h" @@ -2261,8 +2262,9 @@ add_menu_item (HMENU menu, widget_value *wv, HMENU item) { UINT fuFlags; - char *out_string; + char *out_string, *p, *q; int return_value; + size_t nlen, orig_len; if (name_is_separator (wv->name)) { @@ -2286,6 +2288,33 @@ else out_string = wv->name; + /* Quote any special characters within the menu item's text and + key binding. */ + nlen = orig_len = strlen (out_string); + for (p = out_string; *p; p = _mbsinc (p)) + { + if (_mbsnextc (p) == '&') + nlen++; + } + if (nlen > orig_len) + { + p = out_string; + out_string = alloca (nlen + 1); + q = out_string; + while (*p) + { + if (_mbsnextc (p) == '&') + { + _mbsncpy (q, p, 1); + q = _mbsinc (q); + } + _mbsncpy (q, p, 1); + p = _mbsinc (p); + q = _mbsinc (q); + } + *q = '\0'; + } + if (item != NULL) fuFlags = MF_POPUP; else if (wv->title || wv->call_data == 0)