From 2d2b894c3b869fadc78fce9d72cb5c8d2b764cac Mon Sep 17 00:00:00 2001 From: Conrad Irwin Date: Thu, 1 Feb 2024 23:19:23 -0700 Subject: Fix unnecessary explicit panic in PTY Closes #7680. --- alacritty/src/window_context.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'alacritty/src') diff --git a/alacritty/src/window_context.rs b/alacritty/src/window_context.rs index 3f3e6807..891551bb 100644 --- a/alacritty/src/window_context.rs +++ b/alacritty/src/window_context.rs @@ -223,7 +223,7 @@ impl WindowContext { pty, pty_config.hold, config.debug.ref_test, - ); + )?; // The event loop channel allows write requests from the event processor // to be sent to the pty loop and ultimately written to the pty. -- cgit