-
Notifications
You must be signed in to change notification settings - Fork 183
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
jline prints a CRLF on macOS and Linux for a new line #282
Comments
This is a regression between JLine 2.11 (working) and JLine 2.14.3 (contains this bug). This is the reason why some Linux machines behaved as expected: they were using the older JLine. |
I think it should use the System.lineSeparator() instead. |
Bisecting reveals commit 3b0c474 introduced the extra |
* We use the property as System.lineSeparator() is Java 7+. * Fixes jline#282.
* We use the property as System.lineSeparator() is Java 7+. * Fixes jline#282.
PR created, with test and ensuring it fails before and succeeds after the fix: #283 . |
Console reader's
println
isUnixTerminal
hascarriage_return
as^M
, which isCR
, and then yourawPrint
theLF
.Isn't
CRLF
a Windows thing? Why do you print it here? IsUnixTerminal
getting confused somehow? I'm redirectingstdout
to a file in my shell if that makes a difference.I've seen this happening on macOS and Linux, but on some colleagues Linux machines they seem to be getting just
LF
.The text was updated successfully, but these errors were encountered: