1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-01-03 14:57:44 -05:00

[document] bitifield kind in struct line.

I want to use it for sixel, but later some other kinds might be added.
This commit is contained in:
Witold Filipczyk 2023-05-18 10:38:30 +02:00
parent 70b47238e0
commit c1d954ab0a

View File

@ -37,7 +37,8 @@ struct node {
* the terminal screen. */
struct line {
struct screen_char *chars;
int length;
unsigned int length:30;
unsigned int kind:1;
};
/** Codepage status */