diff --git a/lib/readline.js b/lib/readline.js index ca99fe15c0a593..a3a3452abacc8c 100644 --- a/lib/readline.js +++ b/lib/readline.js @@ -700,7 +700,8 @@ Interface.prototype._moveCursor = function(dx) { Interface.prototype._ttyWrite = function(s, key) { key = key || {}; - // Ignore escape key - Fixes #2876 + // Ignore escape key, fixes + // https://github.com/nodejs/node-v0.x-archive/issues/2876. if (key.name === 'escape') return; if (key.ctrl && key.shift) {