0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

patch 9.0.0095: conditions are always true

Problem:    Conditions are always true.
Solution:   Remove useless conditions. (closes #10802)
This commit is contained in:
zeertzjq
2022-07-27 15:48:45 +01:00
committed by Bram Moolenaar
parent 3d6ee8bda0
commit 122dea7007
3 changed files with 7 additions and 4 deletions

View File

@@ -4297,7 +4297,7 @@ build_stl_str_hl(
curitem = 0; curitem = 0;
prevchar_isflag = TRUE; prevchar_isflag = TRUE;
prevchar_isitem = FALSE; prevchar_isitem = FALSE;
for (s = usefmt; *s; ) for (s = usefmt; *s != NUL; )
{ {
if (curitem == (int)stl_items_len) if (curitem == (int)stl_items_len)
{ {
@@ -4327,7 +4327,7 @@ build_stl_str_hl(
stl_items_len = new_len; stl_items_len = new_len;
} }
if (*s != NUL && *s != '%') if (*s != '%')
prevchar_isflag = prevchar_isitem = FALSE; prevchar_isflag = prevchar_isitem = FALSE;
/* /*

View File

@@ -2267,7 +2267,8 @@ get_c_indent(void)
} }
// If the start comment string doesn't match with the // If the start comment string doesn't match with the
// start of the comment, skip this entry. XXX // 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) lead_start, lead_start_len) != 0)
continue; continue;
} }
@@ -3717,7 +3718,7 @@ term_again:
// Are we at the start of a cpp base class declaration or // Are we at the start of a cpp base class declaration or
// constructor initialization? XXX // constructor initialization? XXX
n = FALSE; 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); n = cin_is_cpp_baseclass(&cache_cpp_baseclass);
l = ml_get_curline(); l = ml_get_curline();

View File

@@ -735,6 +735,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
95,
/**/ /**/
94, 94,
/**/ /**/