summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/map.c2
-rw-r--r--src/quickfix.c2
-rw-r--r--src/version.c2
3 files changed, 4 insertions, 2 deletions
diff --git a/src/map.c b/src/map.c
index 31742c13b3..2e792feaa0 100644
--- a/src/map.c
+++ b/src/map.c
@@ -1552,7 +1552,7 @@ check_abbr(
escaped = vim_strsave_escape_csi(tb + j);
if (escaped != NULL)
{
- newlen = STRLEN(escaped);
+ newlen = (int)STRLEN(escaped);
mch_memmove(tb + j, escaped, newlen);
j += newlen;
vim_free(escaped);
diff --git a/src/quickfix.c b/src/quickfix.c
index 270810c314..9237b4b814 100644
--- a/src/quickfix.c
+++ b/src/quickfix.c
@@ -5921,7 +5921,7 @@ vgr_match_buflines(
int found_match = FALSE;
long lnum;
colnr_T col;
- int pat_len = STRLEN(spat);
+ int pat_len = (int)STRLEN(spat);
for (lnum = 1; lnum <= buf->b_ml.ml_line_count && *tomatch > 0; ++lnum)
{
diff --git a/src/version.c b/src/version.c
index a72cd3c05e..82875de78a 100644
--- a/src/version.c
+++ b/src/version.c
@@ -751,6 +751,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 2826,
+/**/
2825,
/**/
2824,