diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-12-05 23:33:22 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-05 23:33:22 -0500 |
commit | 523f03b506bf577811c0e136bc852cdb89f92c00 (patch) | |
tree | 300f7c7b36f176e593e52c253c6ed2cb25777c49 /src/nvim/eval/decode.c | |
parent | 4306b395defb7ef8f614127e0fbe362656346da3 (diff) | |
download | rneovim-523f03b506bf577811c0e136bc852cdb89f92c00.tar.gz rneovim-523f03b506bf577811c0e136bc852cdb89f92c00.tar.bz2 rneovim-523f03b506bf577811c0e136bc852cdb89f92c00.zip |
lint (#16526)
Diffstat (limited to 'src/nvim/eval/decode.c')
-rw-r--r-- | src/nvim/eval/decode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/eval/decode.c b/src/nvim/eval/decode.c index 5008945f09..4601d47a23 100644 --- a/src/nvim/eval/decode.c +++ b/src/nvim/eval/decode.c @@ -730,7 +730,7 @@ json_decode_string_cycle_start: ? (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)) { + : (tv_list_len(last_container.special_val) == 0)) { semsg(_("E474: Leading comma: %.*s"), LENP(p, e)); goto json_decode_string_fail; } |