mirror of
https://github.com/nodejs/node.git
synced 2025-08-16 14:18:44 +02:00
repl: call resume() after setRawMode()
Solves #4178, but does not fix the underlying issue
This commit is contained in:
parent
626db18635
commit
f34f1e30a6
1 changed files with 2 additions and 1 deletions
|
@ -75,7 +75,6 @@ function Interface(input, output, completer, terminal) {
|
|||
|
||||
this.output = output;
|
||||
this.input = input;
|
||||
input.resume();
|
||||
|
||||
// Check arity, 2 - for async, 1 for sync
|
||||
this.completer = completer.length === 2 ? completer : function(v, callback) {
|
||||
|
@ -137,6 +136,8 @@ function Interface(input, output, completer, terminal) {
|
|||
output.removeListener('resize', onresize);
|
||||
});
|
||||
}
|
||||
|
||||
input.resume();
|
||||
}
|
||||
|
||||
inherits(Interface, EventEmitter);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue