summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTitanSnow <[email protected]>2017-05-10 18:10:47 +0800
committerTitanSnow <[email protected]>2017-05-10 18:10:47 +0800
commit8e33ff0dd31832fcf55f350d948ed6d7ec696109 (patch)
treea71b9b8019de70b733cb427c719d780e11afdc7c
parent46e769d8b27683b1f74776598ef1fa330cdec0a6 (diff)
rm field timestamp
-rw-r--r--core/src/xmake/readline/history_list.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/core/src/xmake/readline/history_list.c b/core/src/xmake/readline/history_list.c
index 68597b945..30df2ef6f 100644
--- a/core/src/xmake/readline/history_list.c
+++ b/core/src/xmake/readline/history_list.c
@@ -56,10 +56,6 @@ tb_int_t xm_readline_history_list(lua_State* lua)
lua_pushstring(lua, "line");
lua_pushstring(lua, (*p) -> line);
lua_settable(lua, -3);
- // field timestamp
- lua_pushstring(lua, "timestamp");
- lua_pushstring(lua, (*p) -> timestamp);
- lua_settable(lua, -3);
// set back
lua_rawseti(lua, -2, i);