commit | 1c46544412382db8b3203d6c78e550df885540bd | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sun Mar 12 20:10:05 2017 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Sun Mar 12 20:10:05 2017 +0100 |
tree | d4dc51020d3ebdbee4548b0d5628221f921af2f3 | |
parent | 91acfffc1e6c0d8c2abfb186a0e79a5bf19c3f3f [diff] [blame] |
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.
diff --git a/src/if_cscope.c b/src/if_cscope.c index 5b38498..7a53323 100644 --- a/src/if_cscope.c +++ b/src/if_cscope.c
@@ -781,7 +781,7 @@ * they may want to use the leading white space. */ pat = pattern; if (search != 4 && search != 6) - while vim_iswhite(*pat) + while VIM_ISWHITE(*pat) ++pat; if ((cmd = (char *)alloc((unsigned)(strlen(pat) + 2))) == NULL)