From bc42c821bb099b08dae4bb295e01bacaa719099f Mon Sep 17 00:00:00 2001 From: Jacob Sandlund Date: Mon, 24 Nov 2025 11:48:40 -0500 Subject: [PATCH] Add back accidentally removed line --- src/terminal/Terminal.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/src/terminal/Terminal.zig b/src/terminal/Terminal.zig index f2d66bf2c..341a54850 100644 --- a/src/terminal/Terminal.zig +++ b/src/terminal/Terminal.zig @@ -375,6 +375,7 @@ pub fn print(self: *Terminal, c: u21) !void { // the cell width accordingly. VS16 makes the character wide and // VS15 makes it narrow. if (c == 0xFE0F or c == 0xFE0E) { + const prev_props = unicode.table.get(prev.cell.content.codepoint); // Check if it is a valid variation sequence in // emoji-variation-sequences.txt, and if not, ignore the char. if (!prev_props.emoji_vs_base) return;