selection: remove duplicate ‘ESC’ in switch case

This commit is contained in:
Daniel Eklöf 2021-01-23 11:30:32 +01:00
parent e70776fc8c
commit 49d6dbd761
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -1651,10 +1651,6 @@ fdm_receive(struct fdm *fdm, int fd, int events, void *data)
/* Additional control characters stripped by default (but
* configurable) in XTerm: BS, HT, DEL */
case '\b': case '\t': case '\x7f':
/* FALLTHROUGH */
/* ESC */
case '\x1b':
ctx->decoder(ctx, p, i);
xassert(i + 1 <= left);