Commit: patch 9.1.0214: Duplicate condition in win_lbr_chartabsize()

4 views
Skip to first unread message

Christian Brabandt

unread,
Mar 28, 2024, 5:15:14 AM3/28/24
to vim...@googlegroups.com
patch 9.1.0214: Duplicate condition in win_lbr_chartabsize()

Commit: https://github.com/vim/vim/commit/5532d3b3f0c73d4e0fa07122ebbed3bf201870f9
Author: zeertzjq <zeer...@outlook.com>
Date: Thu Mar 28 10:04:25 2024 +0100

patch 9.1.0214: Duplicate condition in win_lbr_chartabsize()

Problem: Duplicate condition in win_lbr_chartabsize().
Solution: Remove the duplicate condition, as it's already checked above.
(zeertzjq)

closes: #14320

Signed-off-by: zeertzjq <zeer...@outlook.com>
Signed-off-by: Christian Brabandt <c...@256bit.org>

diff --git a/src/charset.c b/src/charset.c
index c9584a90f..470698f0e 100644
--- a/src/charset.c
+++ b/src/charset.c
@@ -1357,7 +1357,7 @@ win_lbr_chartabsize(
cts->cts_bri_size = get_breakindent_win(wp, line);
head_mid += cts->cts_bri_size;
}
- if (head_mid > 0 && wcol + size > wp->w_width)
+ if (head_mid > 0)
{
// Calculate effective window width.
int prev_rem = wp->w_width - wcol;
diff --git a/src/version.c b/src/version.c
index 5383d5151..e8b478d95 100644
--- a/src/version.c
+++ b/src/version.c
@@ -704,6 +704,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 214,
/**/
213,
/**/
Reply all
Reply to author
Forward
0 new messages