diff --git a/lib/_debugger.js b/lib/_debugger.js index 93d04c9ded..c638f2933d 100644 --- a/lib/_debugger.js +++ b/lib/_debugger.js @@ -1558,7 +1558,6 @@ Interface.prototype.repl = function() { this.history.control = this.repl.rli.history; this.repl.rli.history = this.history.debug; - this.repl.prompt = '> '; this.repl.rli.setPrompt('> '); this.repl.displayPrompt(); }; @@ -1574,7 +1573,6 @@ Interface.prototype.exitRepl = function() { this.repl.rli.history = this.history.control; this.repl.context = this.context; - this.repl.prompt = 'debug> '; this.repl.rli.setPrompt('debug> '); this.repl.displayPrompt(); };