Skip to content
Snippets Groups Projects
Commit 7225ba71 authored by Cyrill Gorcunov's avatar Cyrill Gorcunov Committed by Kirill Yukhin
Browse files

box/console: use tabs instead of spaces in consolelib


For some reason we're using spaces here to adjust code.

Signed-off-by: default avatarCyrill Gorcunov <gorcunov@gmail.com>
parent a2e34240
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment