Fix grey colour, from Magnus Gross.

This commit is contained in:
nicm 2024-09-29 20:05:42 +00:00
parent 489c69f5ed
commit 9bd039d1bc
2 changed files with 3 additions and 3 deletions

View File

@ -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);

4
tmux.c
View File

@ -418,9 +418,9 @@ main(int argc, char **argv)
cfg_files[cfg_nfiles++] = xstrdup(optarg); cfg_files[cfg_nfiles++] = xstrdup(optarg);
cfg_quiet = 0; cfg_quiet = 0;
break; break;
case 'V': case 'V':
printf("tmux %s\n", getversion()); printf("tmux %s\n", getversion());
exit(0); exit(0);
case 'l': case 'l':
flags |= CLIENT_LOGIN; flags |= CLIENT_LOGIN;
break; break;