From 1c46544412382db8b3203d6c78e550df885540bd Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sun, 12 Mar 2017 20:10:05 +0100 Subject: patch 8.0.0452: some macros are in lower case Problem: Some macros are in lower case. Solution: Make a few more macros upper case. --- src/regexp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/regexp.c') diff --git a/src/regexp.c b/src/regexp.c index 57f3423c5..91b8015bb 100644 --- a/src/regexp.c +++ b/src/regexp.c @@ -4523,14 +4523,14 @@ regmatch( break; case WHITE: - if (!vim_iswhite(c)) + if (!VIM_ISWHITE(c)) status = RA_NOMATCH; else ADVANCE_REGINPUT(); break; case NWHITE: - if (c == NUL || vim_iswhite(c)) + if (c == NUL || VIM_ISWHITE(c)) status = RA_NOMATCH; else ADVANCE_REGINPUT(); -- cgit v1.2.1