Skip to content

Commit

Permalink
readline: update references to archived repository
Browse files Browse the repository at this point in the history
Backport-PR-URL: #19119
PR-URL: #17924
Reviewed-By: Anna Henningsen <[email protected]>
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: Jon Moss <[email protected]>
Reviewed-By: Luigi Pinca <[email protected]>
Reviewed-By: James M Snell <[email protected]>
Reviewed-By: Ruben Bridgewater <[email protected]>
  • Loading branch information
tniessen authored and MylesBorins committed Mar 21, 2018
1 parent b36330f commit 2a0ed0e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/readline.js
Original file line number Diff line number Diff line change
Expand Up @@ -751,7 +751,8 @@ Interface.prototype._ttyWrite = function(s, key) {
key = key || {};
this._previousKey = key;

// Ignore escape key - Fixes #2876
// Ignore escape key, fixes
// https:/nodejs/node-v0.x-archive/issues/2876.
if (key.name === 'escape') return;

if (key.ctrl && key.shift) {
Expand Down

0 comments on commit 2a0ed0e

Please sign in to comment.