mirror of
https://github.com/tmux/tmux.git
synced 2025-01-19 05:56:25 +00:00
Merge branch 'obsd-master' into master
This commit is contained in:
commit
11e404ca3c
4
input.c
4
input.c
@ -2460,8 +2460,10 @@ input_osc_parse_colour(const char *p)
|
|||||||
(1 - m) * (1 - k) * 255,
|
(1 - m) * (1 - k) * 255,
|
||||||
(1 - y) * (1 - k) * 255);
|
(1 - y) * (1 - k) * 255);
|
||||||
} else {
|
} else {
|
||||||
while (*p == ' ')
|
while (len != 0 && *p == ' ') {
|
||||||
p++;
|
p++;
|
||||||
|
len--;
|
||||||
|
}
|
||||||
while (len != 0 && p[len - 1] == ' ')
|
while (len != 0 && p[len - 1] == ' ')
|
||||||
len--;
|
len--;
|
||||||
copy = xstrndup(p, len);
|
copy = xstrndup(p, len);
|
||||||
|
Loading…
Reference in New Issue
Block a user