Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

xterm audit: DEC mode 3 (DECCOLM), 4 (DECSCLM), 40 (132COLS) #870

Merged
merged 4 commits into from
Nov 13, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
terminal: our mode size changed
mitchellh committed Nov 13, 2023
commit 3192b1354686f6e6a76b125577f8587df72a160b
2 changes: 1 addition & 1 deletion src/terminal/modes.zig
Original file line number Diff line number Diff line change
@@ -69,7 +69,7 @@ pub const ModeState = struct {
// We have this here so that we explicitly fail when we change the
// size of modes. The size of modes is NOT particularly important,
// we just want to be mentally aware when it happens.
try std.testing.expectEqual(4, @sizeOf(ModePacked));
try std.testing.expectEqual(8, @sizeOf(ModePacked));
}
};