comparison src/popupmnu.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 783a75eca83a
children 506f5d8b7d8b
comparison
equal deleted inserted replaced
11120:29ee7ffe8df7 11121:778c10516955
588 && curbuf->b_fname == NULL 588 && curbuf->b_fname == NULL
589 && curbuf->b_p_bt[0] == 'n' && curbuf->b_p_bt[2] == 'f' 589 && curbuf->b_p_bt[0] == 'n' && curbuf->b_p_bt[2] == 'f'
590 && curbuf->b_p_bh[0] == 'w') 590 && curbuf->b_p_bh[0] == 'w')
591 { 591 {
592 /* Already a "wipeout" buffer, make it empty. */ 592 /* Already a "wipeout" buffer, make it empty. */
593 while (!bufempty()) 593 while (!BUFEMPTY())
594 ml_delete((linenr_T)1, FALSE); 594 ml_delete((linenr_T)1, FALSE);
595 } 595 }
596 else 596 else
597 { 597 {
598 /* Don't want to sync undo in the current buffer. */ 598 /* Don't want to sync undo in the current buffer. */