From aa03706ed01abaa6c793ad90c73b48783a074bb1 Mon Sep 17 00:00:00 2001 From: nicm Date: Tue, 10 Feb 2026 08:34:43 +0000 Subject: [PATCH] Remove redundant call to tty_attributes, from Conor Taylor in GitHub issue 4848. --- tty.c | 1 - 1 file changed, 1 deletion(-) diff --git a/tty.c b/tty.c index 5325f38c..29369598 100644 --- a/tty.c +++ b/tty.c @@ -2064,7 +2064,6 @@ tty_cell(struct tty *tty, const struct grid_cell *gc, /* If it is a single character, write with putc to handle ACS. */ if (gcp->data.size == 1) { - tty_attributes(tty, gcp, defaults, palette, hl); if (*gcp->data.data < 0x20 || *gcp->data.data == 0x7f) return; tty_putc(tty, *gcp->data.data);