From 7611a6c7fcc8f0f2d70fed5ba435d669376b723e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sat, 23 Jan 2021 11:30:32 +0100 Subject: [PATCH] =?UTF-8?q?selection:=20remove=20duplicate=20=E2=80=98ESC?= =?UTF-8?q?=E2=80=99=20in=20switch=20case?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- selection.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/selection.c b/selection.c index ca175eeb..b1129152 100644 --- a/selection.c +++ b/selection.c @@ -1346,10 +1346,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); assert(i + 1 <= left);