From e67a0f80e0184e2884fdf5c1c44a9b4df601d325 Mon Sep 17 00:00:00 2001 From: Kyle Robinson Young Date: Wed, 18 Apr 2012 14:23:20 -0700 Subject: [PATCH] readline: _normalWrite() doesn't take a key modifier arg --- lib/readline.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/readline.js b/lib/readline.js index d69aeb4a88..615bd35840 100644 --- a/lib/readline.js +++ b/lib/readline.js @@ -267,7 +267,7 @@ Interface.prototype.resume = function() { Interface.prototype.write = function(d, key) { if (this.paused) this.resume(); - this.terminal ? this._ttyWrite(d, key) : this._normalWrite(d, key); + this.terminal ? this._ttyWrite(d, key) : this._normalWrite(d); }; Interface.prototype._normalWrite = function(b) {