Remove early return in keyboard enhancement check (#751)

This commit is contained in:
Michael Davis 2023-02-01 13:13:12 -06:00 committed by GitHub
parent 338c122e99
commit 383d9a7827
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -131,7 +131,6 @@ fn read_supports_keyboard_enhancement_raw() -> Result<bool> {
let mut stdout = io::stdout();
stdout.write_all(QUERY)?;
stdout.flush()?;
return Ok(false);
}
loop {