• R/O
  • SSH

vim: Commit

Mirror of the Vim source from https://github.com/vim/vim


Commit MetaInfo

Revisión4092d04cd46ff9087940f0735077efd6b093568f (tree)
Tiempo2022-08-15 01:00:03
AutorBram Moolenaar <Bram@vim....>
CommiterBram Moolenaar

Log Message

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.

Cambiar Resumen

Diferencia incremental

diff -r a4d50a1a9843 -r 4092d04cd46f src/drawline.c
--- a/src/drawline.c Sun Aug 14 17:45:03 2022 +0200
+++ b/src/drawline.c Sun Aug 14 18:00:03 2022 +0200
@@ -2993,7 +2993,11 @@
29932993 // Don't use "extra_attr" until n_attr_skip is zero.
29942994 if (n_attr_skip == 0 && n_attr > 0
29952995 && wlv.draw_state == WL_LINE
2996- && (!attr_pri || (text_prop_flags & PT_FLAG_OVERRIDE)))
2996+ && (!attr_pri
2997+#ifdef FEAT_PROP_POPUP
2998+ || (text_prop_flags & PT_FLAG_OVERRIDE)
2999+#endif
3000+ ))
29973001 {
29983002 #ifdef LINE_ATTR
29993003 if (line_attr)
diff -r a4d50a1a9843 -r 4092d04cd46f src/version.c
--- a/src/version.c Sun Aug 14 17:45:03 2022 +0200
+++ b/src/version.c Sun Aug 14 18:00:03 2022 +0200
@@ -736,6 +736,8 @@
736736 static int included_patches[] =
737737 { /* Add new patch number below this line */
738738 /**/
739+ 209,
740+/**/
739741 208,
740742 /**/
741743 207,
Show on old repository browser