Mercurial > vim
changeset 29507:d3058719eff5 v9.0.0095
patch 9.0.0095: conditions are always true
Commit: https://github.com/vim/vim/commit/122dea70073d140aa89212d344c3f62bd3b5b3fa
Author: zeertzjq <zeertzjq@outlook.com>
Date: Wed Jul 27 15:48:45 2022 +0100
patch 9.0.0095: conditions are always true
Problem: Conditions are always true.
Solution: Remove useless conditions. (closes https://github.com/vim/vim/issues/10802)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 27 Jul 2022 17:00:04 +0200 |
parents | f25ba0f8e43b |
children | 10d69d910f49 |
files | src/buffer.c src/cindent.c src/version.c |
diffstat | 3 files changed, 7 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/src/buffer.c +++ b/src/buffer.c @@ -4297,7 +4297,7 @@ build_stl_str_hl( curitem = 0; prevchar_isflag = TRUE; prevchar_isitem = FALSE; - for (s = usefmt; *s; ) + for (s = usefmt; *s != NUL; ) { if (curitem == (int)stl_items_len) { @@ -4327,7 +4327,7 @@ build_stl_str_hl( stl_items_len = new_len; } - if (*s != NUL && *s != '%') + if (*s != '%') prevchar_isflag = prevchar_isitem = FALSE; /*
--- a/src/cindent.c +++ b/src/cindent.c @@ -2267,7 +2267,8 @@ get_c_indent(void) } // If the start comment string doesn't match with the // start of the comment, skip this entry. XXX - else if (STRNCMP(ml_get(comment_pos->lnum) + comment_pos->col, + else if (STRNCMP(ml_get(comment_pos->lnum) + + comment_pos->col, lead_start, lead_start_len) != 0) continue; } @@ -3717,7 +3718,7 @@ term_again: // Are we at the start of a cpp base class declaration or // constructor initialization? XXX n = FALSE; - if (curbuf->b_ind_cpp_baseclass != 0 && theline[0] != '{') + if (curbuf->b_ind_cpp_baseclass != 0) { n = cin_is_cpp_baseclass(&cache_cpp_baseclass); l = ml_get_curline();