comparison src/fold.c @ 11121:778c10516955 v8.0.0448

patch 8.0.0448: some macros are in lower case commit https://github.com/vim/vim/commit/b5aedf3e228d35821591da9ae8501b61cf2e264c Author: Bram Moolenaar <Bram@vim.org> Date: Sun Mar 12 18:23:53 2017 +0100 patch 8.0.0448: some macros are in lower case Problem: Some macros are in lower case, which can be confusing. Solution: Make a few lower case macros upper case.
author Christian Brabandt <cb@256bit.org>
date Sun, 12 Mar 2017 18:30:06 +0100
parents c8b49300c6b7
children 506f5d8b7d8b
comparison
equal deleted inserted replaced
11120:29ee7ffe8df7 11121:778c10516955
1037 char_u *ptr; 1037 char_u *ptr;
1038 1038
1039 if (!VIsual_active || !hasAnyFolding(curwin)) 1039 if (!VIsual_active || !hasAnyFolding(curwin))
1040 return; 1040 return;
1041 1041
1042 if (ltoreq(VIsual, curwin->w_cursor)) 1042 if (LTOREQ_POS(VIsual, curwin->w_cursor))
1043 { 1043 {
1044 start = &VIsual; 1044 start = &VIsual;
1045 end = &curwin->w_cursor; 1045 end = &curwin->w_cursor;
1046 } 1046 }
1047 else 1047 else