mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-15 22:05:24 -05:00
selection: DEL is 0x7f, not 0x1f
This commit is contained in:
parent
94d587fa6a
commit
c8fdd3a214
1 changed files with 1 additions and 1 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue