comparison src/message.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 506f5d8b7d8b
children 501f46f7644c
comparison
equal deleted inserted replaced
11128:23154628ab7f 11129:f4ea50924c6d
1787 1787
1788 /* find start of trailing whitespace */ 1788 /* find start of trailing whitespace */
1789 if (list && lcs_trail) 1789 if (list && lcs_trail)
1790 { 1790 {
1791 trail = s + STRLEN(s); 1791 trail = s + STRLEN(s);
1792 while (trail > s && vim_iswhite(trail[-1])) 1792 while (trail > s && VIM_ISWHITE(trail[-1]))
1793 --trail; 1793 --trail;
1794 } 1794 }
1795 1795
1796 /* output a space for an empty line, otherwise the line will be 1796 /* output a space for an empty line, otherwise the line will be
1797 * overwritten */ 1797 * overwritten */