From 68f681c6ab40e2565b4d94c03918ef1a40d60ebe Mon Sep 17 00:00:00 2001 From: glepnir Date: Sun, 31 Aug 2025 19:01:39 +0200 Subject: [PATCH] patch 9.1.1716: wrong indent in win_line() Problem: The code inside an ifdef was indented incorrectly. Solution: Adjusted the indentation by one level (glepnir). closes: #18174 Signed-off-by: glepnir Signed-off-by: Christian Brabandt --- src/drawline.c | 7 ++++--- src/version.c | 2 ++ 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/src/drawline.c b/src/drawline.c index 3e6958e00f..497ba5b85c 100644 --- a/src/drawline.c +++ b/src/drawline.c @@ -3481,9 +3481,10 @@ win_line( wlv.extra_attr = hl_combine_attr(wlv.win_attr, HL_ATTR(HLF_8)); #ifdef FEAT_PROP_POPUP - if (text_prop_type != NULL && - text_prop_flags & PT_FLAG_OVERRIDE) - wlv.extra_attr = hl_combine_attr(text_prop_attr, wlv.extra_attr); + if (text_prop_type != NULL && + text_prop_flags & PT_FLAG_OVERRIDE) + wlv.extra_attr = hl_combine_attr(text_prop_attr, + wlv.extra_attr); #endif saved_attr2 = wlv.char_attr; // save current attr diff --git a/src/version.c b/src/version.c index b700067fc2..2d6aa57583 100644 --- a/src/version.c +++ b/src/version.c @@ -724,6 +724,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1716, /**/ 1715, /**/ -- 2.47.3