mirror of
https://github.com/mintycube/st.git
synced 2024-10-22 14:05:49 +02:00
dont print color warning on color reset OSC 104 without parameter (294808)
This commit is contained in:
parent
fa3d47596d
commit
d8b8f94d64
5
st.c
5
st.c
@ -1990,7 +1990,10 @@ strhandle(void)
|
||||
case 104: /* color reset, here p = NULL */
|
||||
j = (narg > 1) ? atoi(strescseq.args[1]) : -1;
|
||||
if (xsetcolorname(j, p)) {
|
||||
fprintf(stderr, "erresc: invalid color %s\n", p);
|
||||
if (par == 104 && narg <= 1)
|
||||
return; /* color reset without parameter */
|
||||
fprintf(stderr, "erresc: invalid color j=%d, p=%s\n",
|
||||
j, p ? p : "(null)");
|
||||
} else {
|
||||
/*
|
||||
* TODO if defaultbg color is changed, borders
|
||||
|
Loading…
Reference in New Issue
Block a user