diff options
author | ZyX <kp-pav@yandex.ru> | 2017-04-08 19:11:42 +0300 |
---|---|---|
committer | ZyX <kp-pav@yandex.ru> | 2017-04-08 19:20:42 +0300 |
commit | ab19fa155203a4071cb8e780db7d3480b562aee0 (patch) | |
tree | 67fb71fe4a3c7c6f6c5603d4e63c065257c23de7 /src/nvim/eval/decode.c | |
parent | dc9722326e797453094b5d82decb5369b1086139 (diff) | |
download | rneovim-ab19fa155203a4071cb8e780db7d3480b562aee0.tar.gz rneovim-ab19fa155203a4071cb8e780db7d3480b562aee0.tar.bz2 rneovim-ab19fa155203a4071cb8e780db7d3480b562aee0.zip |
*: Fix linter errors
Drops comments `// for …` that do not pass linter for them being unmaintainable
and fast to becoming incomplete or even incorrect.
Mention @dedmass
Diffstat (limited to 'src/nvim/eval/decode.c')
-rw-r--r-- | src/nvim/eval/decode.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/eval/decode.c b/src/nvim/eval/decode.c index c7ca3a8ce5..f9889ca547 100644 --- a/src/nvim/eval/decode.c +++ b/src/nvim/eval/decode.c @@ -755,9 +755,9 @@ json_decode_string_cycle_start: break; } case '"': { - if (parse_json_string( - buf, buf_len, &p, &stack, &container_stack, - &next_map_special, &didcomma, &didcolon) == FAIL) { + if (parse_json_string(buf, buf_len, &p, &stack, &container_stack, + &next_map_special, &didcomma, &didcolon) + == FAIL) { // Error message was already given goto json_decode_string_fail; } |