osc: recognize, but ignore, OSC 104 and OSC 105

This commit is contained in:
Daniel Eklöf 2019-07-05 19:04:34 +02:00
parent b69282545c
commit 450f6c7dcc
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

4
osc.c
View file

@ -40,6 +40,10 @@ osc_dispatch(struct terminal *term)
case 1: break; /* icon */
case 2: render_set_title(term, string); break; /* title */
case 104: /* Reset Color Number 'c' */
case 105: /* Reset Special Color Number 'c' */
break;
default:
LOG_ERR("unimplemented: OSC: %.*s",
(int)term->vt.osc.idx, term->vt.osc.data);