Merge pull request #696 from ucs1/revert-escdelay

Fix arrow keys not working on mintty
This commit is contained in:
Jana 2020-08-12 19:02:57 +05:30 committed by GitHub
commit 0c93b170c8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;
} }