diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-08-01 07:22:24 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-01 07:22:24 +0800 |
commit | 8952def50afa8308e044c0100e6d4fa367d0a9c2 (patch) | |
tree | 4c305d2f16cebd02f24a1bbf69cbaf8338bc7d4e /src/nvim/syntax.c | |
parent | 68ec497d52bc8e93e12c74099ee9826b9469c3be (diff) | |
parent | 975a273125efa2f820c3e164c7ca8d05b1a24598 (diff) | |
download | rneovim-8952def50afa8308e044c0100e6d4fa367d0a9c2.tar.gz rneovim-8952def50afa8308e044c0100e6d4fa367d0a9c2.tar.bz2 rneovim-8952def50afa8308e044c0100e6d4fa367d0a9c2.zip |
Merge pull request #19595 from zeertzjq/vim-9.0.0124
vim-patch:9.0.0124: code has more indent than needed
Diffstat (limited to 'src/nvim/syntax.c')
-rw-r--r-- | src/nvim/syntax.c | 23 |
1 files changed, 8 insertions, 15 deletions
diff --git a/src/nvim/syntax.c b/src/nvim/syntax.c index 3c37dbe450..4ec4a57d68 100644 --- a/src/nvim/syntax.c +++ b/src/nvim/syntax.c @@ -1390,24 +1390,21 @@ static bool syn_stack_equal(synstate_T *sp) if (bp[i].bs_extmatch == CUR_STATE(i).si_extmatch) { continue; } - // When the extmatch pointers are different, the strings in - // them can still be the same. Check if the extmatch - // references are equal. + // When the extmatch pointers are different, the strings in them can + // still be the same. Check if the extmatch references are equal. bsx = bp[i].bs_extmatch; six = CUR_STATE(i).si_extmatch; - // If one of the extmatch pointers is NULL the states are - // different. + // If one of the extmatch pointers is NULL the states are different. if (bsx == NULL || six == NULL) { break; } int j; for (j = 0; j < NSUBEXP; j++) { - // Check each referenced match string. They must all be - // equal. + // Check each referenced match string. They must all be equal. if (bsx->matches[j] != six->matches[j]) { - // If the pointer is different it can still be the - // same text. Compare the strings, ignore case when - // the start item has the sp_ic flag set. + // If the pointer is different it can still be the same text. + // Compare the strings, ignore case when the start item has the + // sp_ic flag set. if (bsx->matches[j] == NULL || six->matches[j] == NULL) { break; } @@ -1422,11 +1419,7 @@ static bool syn_stack_equal(synstate_T *sp) break; } } - if (i < 0) { - return true; - } - - return false; + return i < 0 ? true : false; } /* |