Revert "Set Escape delay to 0"

An ESCDELAY of 0 can break long escape sequences, such as the arrow keys,
on slower terminals.

This reverts commit 2599564e64.
This commit is contained in:
ucs 2020-08-12 11:55:15 +02:00
parent fb454a5046
commit 52d3d514ce
1 changed files with 1 additions and 1 deletions

View File

@ -1714,7 +1714,7 @@ static bool initcurses(void *oldmask)
} }
settimeout(); /* One second */ settimeout(); /* One second */
set_escdelay(0); set_escdelay(25);
return TRUE; return TRUE;
} }