this repo has no description
13
fork

Configure Feed

Select the types of activity you want to include in your feed.

core: fix panic handler

+1 -1
+1 -1
src/main.zig
··· 47 47 48 48 /// Resets terminal state on a panic, then calls the default zig panic handler 49 49 pub fn panic_handler(msg: []const u8, error_return_trace: ?*std.builtin.StackTrace, ret_addr: ?usize) noreturn { 50 - if (Tty.global_tty) |gty| { 50 + if (tty.global_tty) |gty| { 51 51 const reset: []const u8 = ctlseqs.csi_u_pop ++ 52 52 ctlseqs.mouse_reset ++ 53 53 ctlseqs.bp_reset ++