comparison src/json.c @ 24665:661d15592d3c v8.2.2871

patch 8.2.2871: unnessary VIM_ISDIGIT() calls, badly indented code Commit: https://github.com/vim/vim/commit/4781d6fd8670af415c3b78f00d70036af85bd286 Author: Dominique Pelle <dominique.pelle@gmail.com> Date: Tue May 18 21:46:31 2021 +0200 patch 8.2.2871: unnessary VIM_ISDIGIT() calls, badly indented code Problem: Unnessary VIM_ISDIGIT() calls, badly indented code. Solution: Call skipdigits() on the next character. Improve indenting. (Dominique Pell?, closes #8227)
author Bram Moolenaar <Bram@vim.org>
date Tue, 18 May 2021 22:00:05 +0200
parents a4fda40e0bb9
children 5f8dd7b3ae41
comparison
equal deleted inserted replaced
24664:a9cb1f88ff40 24665:661d15592d3c
605 605
606 ga_init2(&stack, sizeof(json_dec_item_T), 100); 606 ga_init2(&stack, sizeof(json_dec_item_T), 100);
607 cur_item = res; 607 cur_item = res;
608 init_tv(&item); 608 init_tv(&item);
609 if (res != NULL) 609 if (res != NULL)
610 init_tv(res); 610 init_tv(res);
611 611
612 fill_numbuflen(reader); 612 fill_numbuflen(reader);
613 p = reader->js_buf + reader->js_used; 613 p = reader->js_buf + reader->js_used;
614 for (;;) 614 for (;;)
615 { 615 {