diff options
author | James Booth <boothj5@gmail.com> | 2012-10-23 23:30:16 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2012-10-23 23:30:16 +0100 |
commit | 1c2d99c007092d9cc2a844a62c10af34f8dcaff9 (patch) | |
tree | 84673ae646a1c8fd7e830cc0b606485ed5a53078 /src | |
parent | f8a4d21ab394dcad5aa1778c68c31107ccfb70b0 (diff) | |
parent | c2e94bfb20ad67a9f4986757a0672adf943e35f4 (diff) | |
download | profani-tty-1c2d99c007092d9cc2a844a62c10af34f8dcaff9.tar.gz |
Merge branch 'master' into dev
Diffstat (limited to 'src')
-rw-r--r-- | src/input_win.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/input_win.c b/src/input_win.c index 408bd45a..9ee71ce1 100644 --- a/src/input_win.c +++ b/src/input_win.c @@ -72,8 +72,11 @@ static void _parameter_autocomplete(char *input, int *size, char *command, void create_input_window(void) { - if (getenv("ESCDELAY") == NULL) - ESCDELAY = 25; +#ifdef NCURSES_REENTRANT + set_escdelay(25); +#else + ESCDELAY = 25; +#endif int rows, cols; getmaxyx(stdscr, rows, cols); |