summaryrefslogtreecommitdiff
path: root/lib/readline.js
diff options
context:
space:
mode:
authorRuben Bridgewater <ruben@bridgewater.de>2018-12-03 13:08:14 +0100
committerRich Trott <rtrott@gmail.com>2018-12-05 23:36:06 -0800
commitfd2467aeaab584f93d2fd78b7d54cc737904e84b (patch)
treed374f9cf3449ba63ef8c268fb6ef72a877c6fad9 /lib/readline.js
parentaa943d098e0299ea87485a607353d152f5ea5012 (diff)
downloadandroid-node-v8-fd2467aeaab584f93d2fd78b7d54cc737904e84b.tar.gz
android-node-v8-fd2467aeaab584f93d2fd78b7d54cc737904e84b.tar.bz2
android-node-v8-fd2467aeaab584f93d2fd78b7d54cc737904e84b.zip
Revert "repl: handle buffered string logic on finish"
This reverts commit eb42c1eb4f2502433a22c49ede9e657fb6cd86e0. PR-URL: https://github.com/nodejs/node/pull/24804 Refs: https://github.com/nodejs/node/issues/24231 Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com> Reviewed-By: Michaƫl Zasso <targos@protonmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Diffstat (limited to 'lib/readline.js')
-rw-r--r--lib/readline.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/readline.js b/lib/readline.js
index e55507416b..8d03cd6e33 100644
--- a/lib/readline.js
+++ b/lib/readline.js
@@ -357,9 +357,9 @@ Interface.prototype.undoHistory = function() {
// If it's a multiline code, then add history
// accordingly.
-Interface.prototype.multilineHistory = function(clearBuffer) {
- // if not clear buffer, add multiline history
- if (!clearBuffer && this.terminal) {
+Interface.prototype.multilineHistory = function() {
+ // check if we got a multiline code
+ if (this.multiline !== '' && this.terminal) {
const dupIndex = this.history.indexOf(this.multiline);
if (dupIndex !== -1) this.history.splice(dupIndex, 1);
// Remove the last entered line as multiline