about summary refs log tree commit diff stats
path: root/src/luaconf.h
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-10-22 20:36:10 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-10-22 20:37:56 -0700
commitd92a484b915e8c5b6248bc553d9906dc1f6de2d0 (patch)
tree3b9d9375dd7d12c5484eef95cd637e675650f5f0 /src/luaconf.h
parent9eb951608b3da86dd5d4cc81a799dcbd78f98736 (diff)
downloadteliva-d92a484b915e8c5b6248bc553d9906dc1f6de2d0.tar.gz
kill lua_readline abstraction
Diffstat (limited to 'src/luaconf.h')
-rw-r--r--src/luaconf.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/luaconf.h b/src/luaconf.h
index c0af7e0..ebf6682 100644
--- a/src/luaconf.h
+++ b/src/luaconf.h
@@ -262,11 +262,6 @@
 #define LUA_MAXINPUT	512
 
 
-/* No readline */
-#define lua_readline(L,b,p)	\
-	((void)L, fputs(p, stdout), fflush(stdout),  /* show prompt */ \
-	fgets(b, LUA_MAXINPUT, stdin) != NULL)  /* get line */
-
 #endif
 
 /* }================================================================== */