We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Steps to reproduce:
printf 'a\e\0b' | less -R
Expected result: Less should display
ab (END)
Actual result: Less displays
a(END)
Problem exists in less-590 and less-661. Have not tested other versions.
The text was updated successfully, but these errors were encountered:
is_ansi_middle(0) and is_ansi_end(0) should return FALSE.
325d4db
Currently they return TRUE, which can cause problems when there is a NUL char in the input file. Related to #550.
Fixed in 325d4db.
Sorry, something went wrong.
No branches or pull requests
Steps to reproduce:
printf 'a\e\0b' | less -R
Expected result:
Less should display
Actual result:
Less displays
Problem exists in less-590 and less-661. Have not tested other versions.
The text was updated successfully, but these errors were encountered: