comparison src/userfunc.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 f883a1224396
children 501f46f7644c
comparison
equal deleted inserted replaced
11128:23154628ab7f 11129:f4ea50924c6d
2102 } 2102 }
2103 } 2103 }
2104 else 2104 else
2105 { 2105 {
2106 /* skip ':' and blanks*/ 2106 /* skip ':' and blanks*/
2107 for (p = theline; vim_iswhite(*p) || *p == ':'; ++p) 2107 for (p = theline; VIM_ISWHITE(*p) || *p == ':'; ++p)
2108 ; 2108 ;
2109 2109
2110 /* Check for "endfunction". */ 2110 /* Check for "endfunction". */
2111 if (checkforcmd(&p, "endfunction", 4) && nesting-- == 0) 2111 if (checkforcmd(&p, "endfunction", 4) && nesting-- == 0)
2112 { 2112 {