Skip to content
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

Closed
chrisseaton opened this issue Jun 20, 2017 · 4 comments
Closed

jline prints a CRLF on macOS and Linux for a new line #282

chrisseaton opened this issue Jun 20, 2017 · 4 comments

Comments

@chrisseaton
Copy link

Console reader's println is

    public void println() throws IOException {
        tputs("carriage_return");
        rawPrint('\n');
    }

UnixTerminal has carriage_return as ^M, which is CR, and then you rawPrint the LF.

Isn't CRLF a Windows thing? Why do you print it here? Is UnixTerminal getting confused somehow? I'm redirecting stdout 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.

chrisseaton added a commit to oracle/truffleruby that referenced this issue Jun 20, 2017
chrisseaton added a commit to oracle/truffleruby that referenced this issue Jun 21, 2017
chrisseaton added a commit to oracle/truffleruby that referenced this issue Jun 21, 2017
chrisseaton added a commit to oracle/truffleruby that referenced this issue Jun 21, 2017
@eregon
Copy link
Contributor

eregon commented Jun 22, 2017

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.

@gnodet
Copy link
Member

gnodet commented Jun 22, 2017

I think it should use the System.lineSeparator() instead.
Could someone provide a PR ?

@eregon
Copy link
Contributor

eregon commented Jun 22, 2017

Bisecting reveals commit 3b0c474 introduced the extra \r.
I'll try to make a PR.

eregon added a commit to eregon/jline2 that referenced this issue Jun 22, 2017
* We use the property as System.lineSeparator() is Java 7+.
* Fixes jline#282.
eregon added a commit to eregon/jline2 that referenced this issue Jun 22, 2017
* We use the property as System.lineSeparator() is Java 7+.
* Fixes jline#282.
@eregon
Copy link
Contributor

eregon commented Jun 22, 2017

PR created, with test and ensuring it fails before and succeeds after the fix: #283 .

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants