Browse Source

Simplify REPL

v0.7.4-release
Ryan Dahl 14 years ago
parent
commit
42eb5a6898
  1. 2
      lib/repl.js
  2. 4
      src/node.js

2
lib/repl.js

@ -48,7 +48,7 @@ function REPLServer(prompt, stream) {
self.buffered_cmd = '';
self.stream = stream || process.openStdin();
self.prompt = prompt || "node> ";
self.prompt = prompt || "> ";
var rli = self.rli = rl.createInterface(self.stream, function (text) {
return self.complete(text);

4
src/node.js

@ -741,9 +741,7 @@ if (process.argv[1]) {
});
} else {
// No arguments, run the repl
var repl = requireNative('repl');
console.log("Type '.help' for options.");
repl.start();
requireNative('repl').start();
}
// All our arguments are loaded. We've evaluated all of the scripts. We

Loading…
Cancel
Save