Merge branch 'master' into zig-0.14

This commit is contained in:
CJ van den Berg 2025-02-11 18:44:17 +01:00
commit d4e4271831
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
2 changed files with 3 additions and 3 deletions

View file

@ -18,8 +18,8 @@
.hash = "1220220dbc7fe91c1c54438193ca765cebbcb7d58f35cdcaee404a9d2245a42a4362", .hash = "1220220dbc7fe91c1c54438193ca765cebbcb7d58f35cdcaee404a9d2245a42a4362",
}, },
.thespian = .{ .thespian = .{
.url = "https://github.com/neurocyte/thespian/archive/eb9b8a3dcfbd15e95195951fab0505c337927f39.tar.gz", .url = "https://github.com/neurocyte/thespian/archive/a3f0f5b089534a29f146768345eb32428f59f521.tar.gz",
.hash = "1220caa6ad6a0fa724c5ee13b45add9e87c57d44fd91c7731f659470f88359e1cb64", .hash = "1220839522cd1d8b19c62488127f763a202c69b0ad629666280724902c23f10bd29f",
}, },
.themes = .{ .themes = .{
.url = "https://github.com/neurocyte/flow-themes/releases/download/master-618a7801d3383049adfe18cc09f5f5086c66995f/flow-themes.tar.gz", .url = "https://github.com/neurocyte/flow-themes/releases/download/master-618a7801d3383049adfe18cc09f5f5086c66995f/flow-themes.tar.gz",

View file

@ -90,7 +90,7 @@ pub fn panic(msg: []const u8, error_return_trace: ?*std.builtin.StackTrace, ret_
self.vx.deinit(self.allocator, self.tty.anyWriter()); self.vx.deinit(self.allocator, self.tty.anyWriter());
self.tty.deinit(); self.tty.deinit();
} }
return std.debug.defaultPanic(msg, ret_addr); return std.debug.defaultPanic(msg, ret_addr orelse @returnAddress());
} }
pub fn run(self: *Self) !void { pub fn run(self: *Self) !void {