diff options
author | zeertzjq <zeertzjq@outlook.com> | 2021-12-07 10:23:52 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-06 21:23:52 -0500 |
commit | afdd9c19aa409d07f43ebd167ee2a030bb5a8abb (patch) | |
tree | c87bbcb9a23d141f30d3952892f6e7e19bcd3da5 | |
parent | 0a3826646f9348f9a82b9c8a79efc16dbaf3a21d (diff) | |
download | rneovim-afdd9c19aa409d07f43ebd167ee2a030bb5a8abb.tar.gz rneovim-afdd9c19aa409d07f43ebd167ee2a030bb5a8abb.tar.bz2 rneovim-afdd9c19aa409d07f43ebd167ee2a030bb5a8abb.zip |
refactor: fix indent in decode.c (#16543)
-rw-r--r-- | src/nvim/eval/decode.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/nvim/eval/decode.c b/src/nvim/eval/decode.c index 4601d47a23..797420c150 100644 --- a/src/nvim/eval/decode.c +++ b/src/nvim/eval/decode.c @@ -726,11 +726,11 @@ json_decode_string_cycle_start: semsg(_("E474: Using comma in place of colon: %.*s"), LENP(p, e)); goto json_decode_string_fail; } else if (last_container.special_val == NULL - ? (last_container.container.v_type == VAR_DICT - ? (DICT_LEN(last_container.container.vval.v_dict) == 0) - : (tv_list_len(last_container.container.vval.v_list) - == 0)) - : (tv_list_len(last_container.special_val) == 0)) { + ? (last_container.container.v_type == VAR_DICT + ? (DICT_LEN(last_container.container.vval.v_dict) == 0) + : (tv_list_len(last_container.container.vval.v_list) + == 0)) + : (tv_list_len(last_container.special_val) == 0)) { semsg(_("E474: Leading comma: %.*s"), LENP(p, e)); goto json_decode_string_fail; } |