mirror of
https://github.com/tmux/tmux.git
synced 2024-11-01 07:08:49 +00:00
Fix grey colour, from Magnus Gross.
This commit is contained in:
parent
489c69f5ed
commit
9bd039d1bc
2
colour.c
2
colour.c
@ -948,7 +948,7 @@ colour_byname(const char *name)
|
|||||||
|
|
||||||
if (strncmp(name, "grey", 4) == 0 || strncmp(name, "gray", 4) == 0) {
|
if (strncmp(name, "grey", 4) == 0 || strncmp(name, "gray", 4) == 0) {
|
||||||
if (name[4] == '\0')
|
if (name[4] == '\0')
|
||||||
return (-1);
|
return (0xbebebe|COLOUR_FLAG_RGB);
|
||||||
c = strtonum(name + 4, 0, 100, &errstr);
|
c = strtonum(name + 4, 0, 100, &errstr);
|
||||||
if (errstr != NULL)
|
if (errstr != NULL)
|
||||||
return (-1);
|
return (-1);
|
||||||
|
Loading…
Reference in New Issue
Block a user