Fix Windows Readline error

This commit is contained in:
Richard Feldman 2022-10-31 07:28:24 -04:00
parent 9265d6480d
commit 50ebffad5a
No known key found for this signature in database
GPG key ID: F1F21AA5B1D9E43B

View file

@ -56,7 +56,7 @@ pub fn main() -> i32 {
}; };
} }
#[cfg(windows)] #[cfg(windows)]
Err(Readline::WindowResize) => { Err(ReadlineError::WindowResize) => {
// This is fine; just ignore it. // This is fine; just ignore it.
} }
Err(ReadlineError::Eof) => { Err(ReadlineError::Eof) => {