diff options
author | John Nunley <jtnunley01@gmail.com> | 2023-10-07 12:56:11 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-07 19:56:11 +0000 |
commit | c2f8abecfbaf6b6388e7746b733b7f22cbb7a750 (patch) | |
tree | 3b8e3cb638d25346f7147001ee57cffa46d52f80 /alacritty/src | |
parent | ace987f343649ae98e5fb63cf825414855ccd86e (diff) | |
download | r-alacritty-c2f8abecfbaf6b6388e7746b733b7f22cbb7a750.tar.gz r-alacritty-c2f8abecfbaf6b6388e7746b733b7f22cbb7a750.tar.bz2 r-alacritty-c2f8abecfbaf6b6388e7746b733b7f22cbb7a750.zip |
Port from mio to polling
This patch replaces the mio crate with the polling. Now that
smol-rs/polling#96 has been merged, we should be at full feature parity
with mio v0.6 now.
Fixes #7104.
Fixes #6486.
Diffstat (limited to 'alacritty/src')
-rw-r--r-- | alacritty/src/window_context.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alacritty/src/window_context.rs b/alacritty/src/window_context.rs index 06dd68d6..6a536ca4 100644 --- a/alacritty/src/window_context.rs +++ b/alacritty/src/window_context.rs @@ -569,6 +569,6 @@ impl WindowContext { impl Drop for WindowContext { fn drop(&mut self) { // Shutdown the terminal's PTY. - let _ = self.notifier.0.send(Msg::Shutdown); + self.notifier.0.send(Msg::Shutdown); } } |