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 e7538ae commit 08b28b7Copy full SHA for 08b28b7
2 files changed
src/ops.c
@@ -3813,8 +3813,12 @@ cursor_pos_info(dict_T *dict)
3813
3814
bom_count = bomb_size();
3815
if (dict == NULL && bom_count > 0)
3816
- vim_snprintf((char *)IObuff + STRLEN(IObuff), IOSIZE,
+ {
3817
+ size_t len = STRLEN(IObuff);
3818
+
3819
+ vim_snprintf((char *)IObuff + len, IOSIZE - len,
3820
_("(+%lld for BOM)"), (long_long_T)bom_count);
3821
+ }
3822
if (dict == NULL)
3823
{
3824
// Don't shorten this message, the user asked for it.
src/version.c
@@ -742,6 +742,8 @@ static char *(features[]) =
742
743
static int included_patches[] =
744
{ /* Add new patch number below this line */
745
+/**/
746
+ 63,
747
/**/
748
62,
749
0 commit comments