Skip to content

Commit 0571f3d

Browse files
committed
patch 8.1.2033: cannot build with tiny features
Problem: Cannot build with tiny features. Solution: Add #ifdef.
1 parent 076d988 commit 0571f3d

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/screen.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5383,9 +5383,11 @@ win_line(
53835383
&& draw_state == WL_LINE
53845384
&& !attr_pri)
53855385
{
5386+
#ifdef LINE_ATTR
53865387
if (line_attr)
53875388
char_attr = hl_combine_attr(extra_attr, line_attr);
53885389
else
5390+
#endif
53895391
char_attr = extra_attr;
53905392
}
53915393

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -757,6 +757,8 @@ static char *(features[]) =
757757

758758
static int included_patches[] =
759759
{ /* Add new patch number below this line */
760+
/**/
761+
2033,
760762
/**/
761763
2032,
762764
/**/

0 commit comments

Comments
 (0)