summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-06-29 21:16:58 +0100
committerBram Moolenaar <Bram@vim.org>2022-06-29 21:16:58 +0100
commit083692d598139228e101b8c521aaef7bcf256e9a (patch)
tree237ad8cec0b948b2793e040fa7b8957e0f97fbd8
parent83e11800cc3775de3135ac7d823137c8c1e87fa1 (diff)
patch 9.0.0009: going past the end of a menu item with only modifierv9.0.0009
Problem: Going past the end of a menu item with only modifier. Solution: Check for NUL.
-rw-r--r--src/message.c4
-rw-r--r--src/testdir/test_menu.vim13
-rw-r--r--src/version.c2
3 files changed, 17 insertions, 2 deletions
diff --git a/src/message.c b/src/message.c
index 02380e9177..becb2804d0 100644
--- a/src/message.c
+++ b/src/message.c
@@ -1820,8 +1820,8 @@ str2special(
*sp = str + 1;
}
else
- // single-byte character or illegal byte
- *sp = str + 1;
+ // single-byte character, NUL or illegal byte
+ *sp = str + (*str == NUL ? 0 : 1);
// Make special keys and C0 control characters in <> form, also <M-Space>.
// Use <Space> only for lhs of a mapping.
diff --git a/src/testdir/test_menu.vim b/src/testdir/test_menu.vim
index c867162e5b..df717cc8a7 100644
--- a/src/testdir/test_menu.vim
+++ b/src/testdir/test_menu.vim
@@ -528,4 +528,17 @@ func Test_tmenu()
tunmenu Test
endfunc
+func Test_only_modifier()
+ exe "tmenu a.b \x80\xfc0"
+ let exp =<< trim [TEXT]
+ --- Menus ---
+ 500 a
+ 500 b
+ t - <T-2-^@>
+ [TEXT]
+ call assert_equal(exp, split(execute('tmenu'), "\n"))
+
+ tunmenu a.b
+endfunc
+
" vim: shiftwidth=2 sts=2 expandtab
diff --git a/src/version.c b/src/version.c
index ea1cc16c71..003984ab66 100644
--- a/src/version.c
+++ b/src/version.c
@@ -736,6 +736,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 9,
+/**/
8,
/**/
7,