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 2e47cab commit 0f1c670Copy full SHA for 0f1c670
2 files changed
src/getchar.c
@@ -1296,11 +1296,11 @@ free_typebuf(void)
1296
if (typebuf.tb_buf == typebuf_init)
1297
internal_error("Free typebuf 1");
1298
else
1299
- vim_free(typebuf.tb_buf);
+ VIM_CLEAR(typebuf.tb_buf);
1300
if (typebuf.tb_noremap == noremapbuf_init)
1301
internal_error("Free typebuf 2");
1302
1303
- vim_free(typebuf.tb_noremap);
+ VIM_CLEAR(typebuf.tb_noremap);
1304
}
1305
1306
/*
src/version.c
@@ -757,6 +757,8 @@ static char *(features[]) =
757
758
static int included_patches[] =
759
{ /* Add new patch number below this line */
760
+/**/
761
+ 2091,
762
/**/
763
2090,
764
0 commit comments