about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2012-10-23 23:30:16 +0100
committerJames Booth <boothj5@gmail.com>2012-10-23 23:30:16 +0100
commit1c2d99c007092d9cc2a844a62c10af34f8dcaff9 (patch)
tree84673ae646a1c8fd7e830cc0b606485ed5a53078 /src
parentf8a4d21ab394dcad5aa1778c68c31107ccfb70b0 (diff)
parentc2e94bfb20ad67a9f4986757a0672adf943e35f4 (diff)
downloadprofani-tty-1c2d99c007092d9cc2a844a62c10af34f8dcaff9.tar.gz
Merge branch 'master' into dev
Diffstat (limited to 'src')
-rw-r--r--src/input_win.c7
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);