Browse Source

Make sure raw mode is disabled when exiting a terminal-based REPL.

v0.7.4-release
Brian White 14 years ago
committed by Ryan Dahl
parent
commit
5908bdab9a
  1. 2
      lib/repl.js

2
lib/repl.js

@ -423,7 +423,7 @@ function defineDefaultCommands(repl) {
repl.defineCommand('exit', {
help: 'Exit the repl',
action: function() {
this.stream.destroy();
this.rli.close();
}
});

Loading…
Cancel
Save