comparison src/if_cscope.c @ 11129:f4ea50924c6d v8.0.0452

patch 8.0.0452: some macros are in lower case commit https://github.com/vim/vim/commit/1c46544412382db8b3203d6c78e550df885540bd Author: Bram Moolenaar <Bram@vim.org> Date: Sun Mar 12 20:10:05 2017 +0100 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.
author Christian Brabandt <cb@256bit.org>
date Sun, 12 Mar 2017 20:15:06 +0100
parents e71d3bdf3bc3
children 501f46f7644c
comparison
equal deleted inserted replaced
11128:23154628ab7f 11129:f4ea50924c6d
779 779
780 /* Skip white space before the patter, except for text and pattern search, 780 /* Skip white space before the patter, except for text and pattern search,
781 * they may want to use the leading white space. */ 781 * they may want to use the leading white space. */
782 pat = pattern; 782 pat = pattern;
783 if (search != 4 && search != 6) 783 if (search != 4 && search != 6)
784 while vim_iswhite(*pat) 784 while VIM_ISWHITE(*pat)
785 ++pat; 785 ++pat;
786 786
787 if ((cmd = (char *)alloc((unsigned)(strlen(pat) + 2))) == NULL) 787 if ((cmd = (char *)alloc((unsigned)(strlen(pat) + 2))) == NULL)
788 return NULL; 788 return NULL;
789 789