changeset 29738:4092d04cd46f v9.0.0209

patch 9.0.0209: build error with small features Commit: https://github.com/vim/vim/commit/677a39fdf6a61d77ae5d14faeb498f94fd8742ff Author: Bram Moolenaar <Bram@vim.org> Date: Sun Aug 14 16:50:42 2022 +0100 patch 9.0.0209: build error with small features Problem: Build error with small features. Solution: Add #ifdef.
author Bram Moolenaar <Bram@vim.org>
date Sun, 14 Aug 2022 18:00:03 +0200
parents a4d50a1a9843
children fee763635e6b
files src/drawline.c src/version.c
diffstat 2 files changed, 7 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/drawline.c
+++ b/src/drawline.c
@@ -2993,7 +2993,11 @@ win_line(
 	// Don't use "extra_attr" until n_attr_skip is zero.
 	if (n_attr_skip == 0 && n_attr > 0
 		&& wlv.draw_state == WL_LINE
-		&& (!attr_pri || (text_prop_flags & PT_FLAG_OVERRIDE)))
+		&& (!attr_pri
+#ifdef FEAT_PROP_POPUP
+		    || (text_prop_flags & PT_FLAG_OVERRIDE)
+#endif
+		   ))
 	{
 #ifdef LINE_ATTR
 	    if (line_attr)
--- a/src/version.c
+++ b/src/version.c
@@ -736,6 +736,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    209,
+/**/
     208,
 /**/
     207,