summaryrefslogtreecommitdiffstats
path: root/src/cindent.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-07-27 15:48:45 +0100
committerBram Moolenaar <Bram@vim.org>2022-07-27 15:48:45 +0100
commit122dea70073d140aa89212d344c3f62bd3b5b3fa (patch)
tree8e9c9e34aa381f6da2dc7b8dcd58de85c19cedca /src/cindent.c
parent3d6ee8bda0550a01346f5992bbce09c0eb6d7569 (diff)
patch 9.0.0095: conditions are always truev9.0.0095
Problem: Conditions are always true. Solution: Remove useless conditions. (closes #10802)
Diffstat (limited to 'src/cindent.c')
-rw-r--r--src/cindent.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/cindent.c b/src/cindent.c
index 48ddca5320..15b459cd6f 100644
--- 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();