term: rename colors256 -> table

This commit is contained in:
Daniel Eklöf 2019-08-21 18:50:24 +02:00
parent 631e0c0870
commit d8fb80ea32
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
5 changed files with 19 additions and 25 deletions

View file

@ -285,12 +285,12 @@ struct terminal {
struct {
uint32_t fg;
uint32_t bg;
uint32_t colors256[256];
uint32_t table[256];
double alpha;
uint32_t default_fg;
uint32_t default_bg;
uint32_t default_colors256[256];
uint32_t default_table[256];
} colors;
struct {