summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/ex_docmd.c2
-rw-r--r--src/misc1.c4
-rw-r--r--src/option.c2
-rw-r--r--src/version.c2
4 files changed, 6 insertions, 4 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c
index 64ab247846..e51f84997d 100644
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -2747,7 +2747,7 @@ checkforcmd_opt(
for (i = 0; cmd[i] != NUL; ++i)
if (((char_u *)cmd)[i] != (*pp)[i])
break;
- if (i >= len && !isalpha((*pp)[i]) && (*pp)[i] != '_'
+ if (i >= len && !ASCII_ISALPHA((*pp)[i]) && (*pp)[i] != '_'
&& (!noparen || ((*pp)[i] != '(' && (*pp)[i] != '.')))
{
*pp = skipwhite(*pp + i);
diff --git a/src/misc1.c b/src/misc1.c
index 019bbaf8dd..d369f2aa24 100644
--- a/src/misc1.c
+++ b/src/misc1.c
@@ -2699,11 +2699,11 @@ path_with_url(char_u *fname)
// non-URL text.
// first character must be alpha
- if (!isalpha(*fname))
+ if (!ASCII_ISALPHA(*fname))
return 0;
// check body: alpha or dash
- for (p = fname + 1; (isalpha(*p) || (*p == '-')); ++p)
+ for (p = fname + 1; (ASCII_ISALPHA(*p) || (*p == '-')); ++p)
;
// check last char is not a dash
diff --git a/src/option.c b/src/option.c
index 4afb518d1e..386cf4d3c3 100644
--- a/src/option.c
+++ b/src/option.c
@@ -1684,7 +1684,7 @@ do_set(
errmsg = NULL;
startarg = arg; // remember for error message
- if (STRNCMP(arg, "all", 3) == 0 && !isalpha(arg[3])
+ if (STRNCMP(arg, "all", 3) == 0 && !ASCII_ISALPHA(arg[3])
&& !(opt_flags & OPT_MODELINE))
{
/*
diff --git a/src/version.c b/src/version.c
index d3eb35a025..5565ccbe97 100644
--- a/src/version.c
+++ b/src/version.c
@@ -696,6 +696,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1215,
+/**/
1214,
/**/
1213,