summaryrefslogtreecommitdiff
path: root/src/termio/backend.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/termio/backend.zig')
-rw-r--r--src/termio/backend.zig8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/termio/backend.zig b/src/termio/backend.zig
index 46ed3431c..280fcbde1 100644
--- a/src/termio/backend.zig
+++ b/src/termio/backend.zig
@@ -122,11 +122,7 @@ pub const ThreadData = union(Kind) {
}
pub fn changeConfig(self: *ThreadData, config: *termio.DerivedConfig) void {
- switch (self.*) {
- .exec => |*exec| {
- exec.abnormal_runtime_threshold_ms = config.abnormal_runtime_threshold_ms;
- exec.wait_after_command = config.wait_after_command;
- },
- }
+ _ = self;
+ _ = config;
}
};