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:30:13 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-10-22 20:30:13 -0700
commit9eb951608b3da86dd5d4cc81a799dcbd78f98736 (patch)
tree4d863f076b898aa588c254471e3b85a6f3d4d3b9 /src/luaconf.h
parent0ab2c77e6cac76e7ee4879dd246f29986f7186fb (diff)
downloadteliva-9eb951608b3da86dd5d4cc81a799dcbd78f98736.tar.gz
purge notion of commandline history
Diffstat (limited to 'src/luaconf.h')
-rw-r--r--src/luaconf.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/luaconf.h b/src/luaconf.h
index b15f61d..c0af7e0 100644
--- a/src/luaconf.h
+++ b/src/luaconf.h
@@ -266,8 +266,6 @@
 #define lua_readline(L,b,p)	\
 	((void)L, fputs(p, stdout), fflush(stdout),  /* show prompt */ \
 	fgets(b, LUA_MAXINPUT, stdin) != NULL)  /* get line */
-#define lua_saveline(L,idx)	{ (void)L; (void)idx; }
-#define lua_freeline(L,b)	{ (void)L; (void)b; }
 
 #endif