From c8fdd3a2149b1212506037d1cb86e15fb3411865 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sat, 23 Jan 2021 11:29:27 +0100 Subject: [PATCH] selection: DEL is 0x7f, not 0x1f --- selection.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selection.c b/selection.c index 92da56c5..ca175eeb 100644 --- a/selection.c +++ b/selection.c @@ -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 */