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
Problem description
DECRQM is implemented wrong. It reports "set" when the feature is unknown, and reports "unknown" when a feature is known.
int internalBit = mapDecSetBitToInternalBit(mode); if (internalBit == -1) { value = isDecsetInternalBitSet(internalBit) ? 1 : 2; // 1=set, 2=reset.
The fix appears to be trivial: change == to !=.
==
!=
Additional information
The text was updated successfully, but these errors were encountered:
TerminalEmulator: fix bug in DECRQM handling
8faa5b2
Reported in #1752
Thanks for noticing, this bug has apparently been there since the first commit:
termux-app/app/src/main/java/com/termux/terminal/TerminalEmulator.java
Line 729 in a18ee58
Sorry, something went wrong.
Part of v0.100 release.
No branches or pull requests
Problem description
DECRQM is implemented wrong. It reports "set" when the feature is unknown, and reports "unknown" when a feature is known.
The fix appears to be trivial: change
==
to!=
.Additional information
The text was updated successfully, but these errors were encountered: