From: glepnir Date: Sun, 31 Aug 2025 17:01:39 +0000 (+0200) Subject: patch 9.1.1716: wrong indent in win_line() X-Git-Tag: v9.1.1716^0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=68f681c6ab40e2565b4d94c03918ef1a40d60ebe;p=thirdparty%2Fvim.git 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 --- 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, /**/