From 60df8bbd560944702811d62b312cb4e1e1c50612 Mon Sep 17 00:00:00 2001 From: Bryan Roe Date: Wed, 30 Jan 2019 21:30:08 -0800 Subject: [PATCH] Fixed bug, where _write didn't return a value. This is important, because of bugfix with Polyfill for stream, which accidentally ignored this return value --- modules/win-terminal.js | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/win-terminal.js b/modules/win-terminal.js index e5a2222..dbe2fc3 100644 --- a/modules/win-terminal.js +++ b/modules/win-terminal.js @@ -193,6 +193,7 @@ function windows_terminal() { this.terminal._WriteBuffer(chunk); flush(); } + return (true); }, 'final': function (flush) { var p = this.terminal._stop();