From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-lf1-f68.google.com (mail-lf1-f68.google.com [209.85.167.68]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id 35F4E469711 for ; Fri, 8 May 2020 14:47:42 +0300 (MSK) Received: by mail-lf1-f68.google.com with SMTP id t2so1176795lfc.3 for ; Fri, 08 May 2020 04:47:42 -0700 (PDT) From: Cyrill Gorcunov Date: Fri, 8 May 2020 14:47:09 +0300 Message-Id: <20200508114714.426908-3-gorcunov@gmail.com> In-Reply-To: <20200508114714.426908-1-gorcunov@gmail.com> References: <20200508114714.426908-1-gorcunov@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH 2/7] box/console: use tabs instead of spaces in consolelib List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: tml For some reason we're using spaces here to adjust code. Signed-off-by: Cyrill Gorcunov --- 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