We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 833093b commit 22c1056Copy full SHA for 22c1056
src/memline.c
@@ -344,7 +344,7 @@ ml_open(buf_T *buf)
344
b0p->b0_magic_int = (int)B0_MAGIC_INT;
345
b0p->b0_magic_short = (short)B0_MAGIC_SHORT;
346
b0p->b0_magic_char = B0_MAGIC_CHAR;
347
- STRNCPY(b0p->b0_version, "VIM ", 4);
+ mch_memmove(b0p->b0_version, "VIM ", 4);
348
STRNCPY(b0p->b0_version + 4, Version, 6);
349
long_to_char((long)mfp->mf_page_size, b0p->b0_page_size);
350
src/version.c
@@ -761,6 +761,8 @@ static char *(features[]) =
761
762
static int included_patches[] =
763
{ /* Add new patch number below this line */
764
+/**/
765
+ 23,
766
/**/
767
22,
768
0 commit comments