We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 925ccfd commit ef9d9b9Copy full SHA for ef9d9b9
2 files changed
src/eval.c
@@ -933,6 +933,11 @@ eval_init(void)
933
for (i = 0; i < VV_LEN; ++i)
934
{
935
p = &vimvars[i];
936
+ if (STRLEN(p->vv_name) > 16)
937
+ {
938
+ EMSG("INTERNAL: name too long, increase size of dictitem16_T");
939
+ getout(1);
940
+ }
941
STRCPY(p->vv_di.di_key, p->vv_name);
942
if (p->vv_flags & VV_RO)
943
p->vv_di.di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
src/version.c
@@ -748,6 +748,8 @@ static char *(features[]) =
748
749
static int included_patches[] =
750
{ /* Add new patch number below this line */
751
+/**/
752
+ 1681,
753
/**/
754
1680,
755
0 commit comments