1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-16 01:08:31 -04:00

[screen_char] Added bitfield is_node.

This commit is contained in:
Witold Filipczyk 2022-03-05 21:12:14 +01:00
parent 2ec2d2b416
commit 1e657abb3b

View File

@ -59,6 +59,8 @@ struct screen_char {
/** Attributes are ::screen_char_attr bits. */ /** Attributes are ::screen_char_attr bits. */
unsigned char attr; unsigned char attr;
unsigned int is_node:1;
union { union {
/** The fore- and background color. */ /** The fore- and background color. */
unsigned char color[SCREEN_COLOR_SIZE]; unsigned char color[SCREEN_COLOR_SIZE];