about summary refs log tree commit diff stats
path: root/src/lua.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lua.c')
-rw-r--r--src/lua.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/lua.c b/src/lua.c
index 3a46609..1f2953f 100644
--- a/src/lua.c
+++ b/src/lua.c
@@ -188,7 +188,6 @@ static int pushline (lua_State *L, int firstline) {
     lua_pushfstring(L, "return %s", b+1);  /* change it to `return' */
   else
     lua_pushstring(L, b);
-  lua_freeline(L, b);
   return 1;
 }
 
@@ -207,7 +206,6 @@ static int loadline (lua_State *L) {
     lua_insert(L, -2);  /* ...between the two lines */
     lua_concat(L, 3);  /* join them */
   }
-  lua_saveline(L, 1);
   lua_remove(L, 1);  /* remove line */
   return status;
 }