mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-17 17:26:09 +03:00
missing trace
This commit is contained in:
@ -68,6 +68,10 @@ pub fn Stream(comptime Handler: type) type {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub fn execute(self: *Self, c: u8) !void {
|
pub fn execute(self: *Self, c: u8) !void {
|
||||||
|
const tracy = trace(@src());
|
||||||
|
tracy.value(@intCast(u64, c));
|
||||||
|
defer tracy.end();
|
||||||
|
|
||||||
// log.warn("C0: {}", .{c});
|
// log.warn("C0: {}", .{c});
|
||||||
switch (@intToEnum(ansi.C0, c)) {
|
switch (@intToEnum(ansi.C0, c)) {
|
||||||
.NUL => {},
|
.NUL => {},
|
||||||
|
Reference in New Issue
Block a user