diff --git a/src/misc1.c b/src/misc1.c index 62eba0206d..109b7bb0cf 100644 --- a/src/misc1.c +++ b/src/misc1.c @@ -2643,7 +2643,7 @@ path_with_url(char_u *fname) return 0; // check body: alpha or dash - for (p = fname; (isalpha(*p) || (*p == '-')); ++p) + for (p = fname + 1; (isalpha(*p) || (*p == '-')); ++p) ; // check last char is not a dash diff --git a/src/version.c b/src/version.c index e4f72bd672..75c35196b8 100644 --- a/src/version.c +++ b/src/version.c @@ -757,6 +757,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 3551, /**/ 3550, /**/