about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-11-28 14:17:34 -0800
committerKartik K. Agaram <vc@akkartik.com>2021-11-28 14:25:26 -0800
commitcfb366af800a15556527b4a79a9ba5ce7a22c520 (patch)
treeb21d24fb14f366ad142773eb8e233f60c182d0f0 /src
parent499286566d2b9e3dc951a3fe02287d660634c113 (diff)
downloadteliva-cfb366af800a15556527b4a79a9ba5ce7a22c520.tar.gz
.
Diffstat (limited to 'src')
-rw-r--r--src/lua.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lua.c b/src/lua.c
index 526ce65..4a051ee 100644
--- a/src/lua.c
+++ b/src/lua.c
@@ -964,7 +964,7 @@ void developer_mode (lua_State *L) {
     init_pair(i, i, -1);
   for (int i = 0; i < 8; ++i)
     init_pair(i+8, -1, i);
-  nodelay(stdscr, 0);
+  nodelay(stdscr, 0);  /* make getch() block */
   if (load_view_from_editor_state(L))
     big_picture_view(L);
   cleanup_curses();