The colour_fromstring function intends to accept string values “90" through “97", but doesn’t because it checks incorrectly.

Here’s how it checks “91”:


if (strcasecmp(s, "brightred") == 0 ||
   (s[0] == '9' && s[1] == '1' && s[1] == '\0'))
return (91);



Notice it checks s[1] twice, instead of checking s[2].

I’ve attached a patch which fixes the problem.



Also, at http://tmux.sourceforge.net/, the “get the development version” link is broken and has been for little while.  



Attachment: tmux-colour.patch
Description: Binary data

------------------------------------------------------------------------------
Dive into the World of Parallel Programming. The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net/
_______________________________________________
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users

Reply via email to