File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
src/main/java/org/truffleruby/stdlib/readline Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 7
7
{
8
8
"name" : "regex" ,
9
9
"subdir" : True ,
10
- "version" : "a3e84712de5299897890a882227d540324ba2e93 " ,
10
+ "version" : "fa8a4eb585805b7ee82bcb5c82e7dbc0dd081136 " ,
11
11
"urls" : [
12
12
{"url" : "https://github.com/oracle/graal.git" , "kind" : "git" },
13
13
{"url" : "https://curio.ssw.jku.at/nexus/content/repositories/snapshots" , "kind" : "binary" },
16
16
{
17
17
"name" : "sulong" ,
18
18
"subdir" : True ,
19
- "version" : "a3e84712de5299897890a882227d540324ba2e93 " ,
19
+ "version" : "fa8a4eb585805b7ee82bcb5c82e7dbc0dd081136 " ,
20
20
"urls" : [
21
21
{"url" : "https://github.com/oracle/graal.git" , "kind" : "git" },
22
22
{"url" : "https://curio.ssw.jku.at/nexus/content/repositories/snapshots" , "kind" : "binary" },
Original file line number Diff line number Diff line change 55
55
import org .graalvm .shadowed .org .jline .terminal .Terminal ;
56
56
import org .graalvm .shadowed .org .jline .terminal .impl .DumbTerminal ;
57
57
import org .graalvm .shadowed .org .jline .terminal .impl .ExecPty ;
58
+ import org .graalvm .shadowed .org .jline .terminal .spi .TerminalProvider ;
58
59
import org .truffleruby .RubyContext ;
59
60
import org .truffleruby .RubyLanguage ;
60
61
import org .truffleruby .core .support .RubyIO ;
@@ -124,7 +125,7 @@ private ConsoleHolder(
124
125
terminal = new PosixSysTerminalKeepSignalHandlers (
125
126
"TruffleRuby" ,
126
127
getType (),
127
- ExecPty .current (),
128
+ ExecPty .current (TerminalProvider . Stream . Output ),
128
129
StandardCharsets .UTF_8 );
129
130
} else {
130
131
try (Terminal inherit = new DumbTerminal (in .getIn (), out .getOut ())) {
You can’t perform that action at this time.
0 commit comments