]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
patch 9.1.1716: wrong indent in win_line() v9.1.1716
authorglepnir <glephunter@gmail.com>
Sun, 31 Aug 2025 17:01:39 +0000 (19:01 +0200)
committerChristian Brabandt <cb@256bit.org>
Sun, 31 Aug 2025 17:01:39 +0000 (19:01 +0200)
Problem:  The code inside an ifdef was indented incorrectly.
Solution: Adjusted the indentation by one level (glepnir).

closes: #18174

Signed-off-by: glepnir <glephunter@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
src/drawline.c
src/version.c

index 3e6958e00fc7de5d4aadbb9cc99ef9866716102b..497ba5b85c41a6f5649d4e15db47cd18097c92d5 100644 (file)
@@ -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
index b700067fc250b5568be21b0a76a61e0ae013ff9b..2d6aa5758322712ca5ce147c19b9ac38a14f22e9 100644 (file)
@@ -724,6 +724,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1716,
 /**/
     1715,
 /**/