[Tarantool-patches] [PATCH 2/7] box/console: use tabs instead of spaces in consolelib
Cyrill Gorcunov
gorcunov at gmail.com
Fri May 8 14:47:09 MSK 2020
For some reason we're using spaces here to adjust code.
Signed-off-by: Cyrill Gorcunov <gorcunov at gmail.com>
---
src/box/lua/console.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/box/lua/console.c b/src/box/lua/console.c
index d937d684e..d437ff3fe 100644
--- a/src/box/lua/console.c
+++ b/src/box/lua/console.c
@@ -552,11 +552,11 @@ void
tarantool_lua_console_init(struct lua_State *L)
{
static const struct luaL_Reg consolelib[] = {
- {"load_history", lbox_console_load_history},
- {"save_history", lbox_console_save_history},
- {"add_history", lbox_console_add_history},
- {"completion_handler", lbox_console_completion_handler},
- {"format", lbox_console_format},
+ {"load_history", lbox_console_load_history},
+ {"save_history", lbox_console_save_history},
+ {"add_history", lbox_console_add_history},
+ {"completion_handler", lbox_console_completion_handler},
+ {"format_yaml", lbox_console_format_yaml},
{NULL, NULL}
};
luaL_register_module(L, "console", consolelib);
--
2.26.2
More information about the Tarantool-patches
mailing list