lib-vt: fix invalid Zig forwards

pull/8907/merge
Mitchell Hashimoto 2025-09-29 09:18:41 -07:00
parent cc0b7f74fd
commit 9ba45b2163
No known key found for this signature in database
GPG Key ID: 523D5DC389D273BC
1 changed files with 2 additions and 2 deletions

View File

@ -31,8 +31,8 @@ pub const size = terminal.size;
pub const x11_color = terminal.x11_color;
pub const Charset = terminal.Charset;
pub const CharsetSlot = terminal.Slots;
pub const CharsetActiveSlot = terminal.ActiveSlot;
pub const CharsetSlot = terminal.CharsetSlot;
pub const CharsetActiveSlot = terminal.CharsetActiveSlot;
pub const Cell = page.Cell;
pub const Coordinate = point.Coordinate;
pub const CSI = Parser.Action.CSI;