commit | 0571f3d6f92a7dab9c1e39acb40c2f8885887b28 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sat Sep 14 22:33:47 2019 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Sat Sep 14 22:33:47 2019 +0200 |
tree | 9b8e6bcb949f796afda1e0e2802942c4924f0fab | |
parent | 076d98839c4f6f15ae3563263057aa99ff04a869 [diff] [blame] |
patch 8.1.2033: cannot build with tiny features Problem: Cannot build with tiny features. Solution: Add #ifdef.
diff --git a/src/screen.c b/src/screen.c index fec1081..14b9465 100644 --- a/src/screen.c +++ b/src/screen.c
@@ -5383,9 +5383,11 @@ && draw_state == WL_LINE && !attr_pri) { +#ifdef LINE_ATTR if (line_attr) char_attr = hl_combine_attr(extra_attr, line_attr); else +#endif char_attr = extra_attr; }