diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-08-14 16:07:48 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-08-14 16:07:48 +0200 |
commit | 35a4cfa200917dd171b1fff3cd5b6cee9add673d (patch) | |
tree | e12d8aac31bfe6c651bb4f5553658203c817ea55 /src/gui_mac.c | |
parent | 2d1a248762f069e470acde389ff4686a45d2f817 (diff) | |
download | vim-git-35a4cfa200917dd171b1fff3cd5b6cee9add673d.tar.gz |
patch 7.4.2209v7.4.2209
Problem: Cannot map <M-">. (Stephen Riehm)
Solution: Solve the memory access problem in another way. (Dominique Pelle)
Allow for using <M-\"> in a string.
Diffstat (limited to 'src/gui_mac.c')
-rw-r--r-- | src/gui_mac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui_mac.c b/src/gui_mac.c index b78c903be..d750b3b1b 100644 --- a/src/gui_mac.c +++ b/src/gui_mac.c @@ -4830,7 +4830,7 @@ gui_mch_add_menu_item(vimmenu_T *menu, int idx) char_u *p_actext; p_actext = menu->actext; - key = find_special_key(&p_actext, &modifiers, FALSE, FALSE); + key = find_special_key(&p_actext, &modifiers, FALSE, FALSE, FALSE); if (*p_actext != 0) key = 0; /* error: trailing text */ /* find_special_key() returns a keycode with as many of the |