diff --git a/src/userfunc.c b/src/userfunc.c index 1878eab39..474812c06 100644 --- a/src/userfunc.c +++ b/src/userfunc.c @@ -2188,7 +2188,7 @@ trans_function_name( name = alloc(len + lead + extra + 1); if (name != NULL) { - if (lead > 0 || vim9script) + if (!skip && (lead > 0 || vim9script)) { name[0] = K_SPECIAL; name[1] = KS_EXTRA; diff --git a/src/version.c b/src/version.c index c8b576d0d..f82670c9e 100644 --- a/src/version.c +++ b/src/version.c @@ -742,6 +742,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 171, /**/ 170, /**/