selection: DEL is 0x7f, not 0x1f

This commit is contained in:
Daniel Eklöf 2021-01-23 11:29:27 +01:00
parent 94d587fa6a
commit c8fdd3a214
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -1345,7 +1345,7 @@ 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 '\x1f':
case '\b': case '\t': case '\x7f':
/* FALLTHROUGH */
/* ESC */