-
Notifications
You must be signed in to change notification settings - Fork 178
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rustyline break some architecture on linux #731
Comments
Maybe we should rollback #717 ? |
Perhaps it could also be maintained by rustyline's author fork a termios? I'm not sure which is the better option |
I would prefer to put |
If you're interested, another option would be to use rustix's termios API, which doesn't have the issues of nix-rust/nix#2071 or dcuddeback/termios-rs#37. |
@sunfishcode |
nix termios usages |
Version 13.0.0 released. |
The reason for this is that some of the terminal control constants in
termios
are wrong in some architectures, specifically at: dcuddeback/termios-rs#37 but it looks like the termios authors don't show up much anymore, rustlyline Is it possible to fix the problem on your own code? The solution is simple: change all variables liketermios::VEOF
tolibc::VEOF
The text was updated successfully, but these errors were encountered: