From: Cyrill Gorcunov <gorcunov@gmail.com>
To: tml <tarantool-patches@freelists.org>
Cc: Konstantin Osipov <kostja@tarantool.org>,
Alexander Turenko <alexander.turenko@tarantool.org>,
Cyrill Gorcunov <gorcunov@gmail.com>
Subject: [tarantool-patches] [PATCH 6/6] box/console: Rename output_parse to parse_output
Date: Fri, 6 Sep 2019 00:28:15 +0300 [thread overview]
Message-ID: <20190905212815.7311-7-gorcunov@gmail.com> (raw)
In-Reply-To: <20190905212815.7311-1-gorcunov@gmail.com>
To be consistent in naming scheme, for example
we already have parse_operators.
Part-of #3834
---
src/box/lua/console.lua | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/box/lua/console.lua b/src/box/lua/console.lua
index c1e8daaf8..75cad9de2 100644
--- a/src/box/lua/console.lua
+++ b/src/box/lua/console.lua
@@ -99,7 +99,7 @@ local function output_verify_opts(fmt, opts)
return nil
end
-local function output_parse(value)
+local function parse_output(value)
local fmt, opts
if value:match("([^,]+),([^,]+)") ~= nil then
fmt, opts = value:match("([^,]+),([^,]+)")
@@ -123,7 +123,7 @@ local function set_default_output(value)
if value == nil then
error("Nil output value passed")
end
- local err, fmt, opts = output_parse(value)
+ local err, fmt, opts = parse_output(value)
if err then
error(err)
end
@@ -234,7 +234,7 @@ local function set_language(storage, value)
end
local function set_output(storage, value)
- local err, fmt, opts = output_parse(value)
+ local err, fmt, opts = parse_output(value)
if err then
return error(err)
end
@@ -401,7 +401,7 @@ local text_connection_mt = {
end
local nr_items, items = parse_operators(command)
if nr_items == 3 then
- local err, fmt, opts = output_parse(items[3])
+ local err, fmt, opts = parse_output(items[3])
if not err then
self.eos = output_eos[fmt]
end
--
2.20.1
prev parent reply other threads:[~2019-09-05 21:29 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-09-05 21:28 [tarantool-patches] [PATCH v3 0/6] box/console: Improve lua mode for remote console Cyrill Gorcunov
2019-09-05 21:28 ` [tarantool-patches] [PATCH 1/6] box/console: Add mapping for direct symbols Cyrill Gorcunov
2019-09-09 15:11 ` [tarantool-patches] " Sergey Ostanevich
2019-09-09 15:54 ` [tarantool-patches] " Cyrill Gorcunov
2019-09-10 3:59 ` [tarantool-patches] Re[2]: [tarantool-patches] " Sergey Ostanevich
2019-09-05 21:28 ` [tarantool-patches] [PATCH 2/6] box/console: Add explicit output EOS mapping Cyrill Gorcunov
2019-09-05 21:28 ` [tarantool-patches] [PATCH 3/6] box/console: Refactor command handling Cyrill Gorcunov
2019-09-05 21:28 ` [tarantool-patches] [PATCH 4/6] box/console: Fix hang in remote console lua mode Cyrill Gorcunov
2019-09-05 21:28 ` [tarantool-patches] [PATCH 5/6] box/console: Provide console.eos() api Cyrill Gorcunov
2019-09-05 21:28 ` Cyrill Gorcunov [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190905212815.7311-7-gorcunov@gmail.com \
--to=gorcunov@gmail.com \
--cc=alexander.turenko@tarantool.org \
--cc=kostja@tarantool.org \
--cc=tarantool-patches@freelists.org \
--subject='Re: [tarantool-patches] [PATCH 6/6] box/console: Rename output_parse to parse_output' \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox