comparison src/vim9compile.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 668df21d8bc6
children 80422f66978a
comparison
equal deleted inserted replaced
24664:a9cb1f88ff40 24665:661d15592d3c
8339 emsg(_(e_missing_catch_or_finally)); 8339 emsg(_(e_missing_catch_or_finally));
8340 return NULL; 8340 return NULL;
8341 } 8341 }
8342 8342
8343 #ifdef FEAT_PROFILE 8343 #ifdef FEAT_PROFILE
8344 if (cctx->ctx_profiling && ((isn_T *)instr->ga_data)[instr->ga_len - 1] 8344 if (cctx->ctx_profiling && ((isn_T *)instr->ga_data)[instr->ga_len - 1]
8345 .isn_type == ISN_PROF_START) 8345 .isn_type == ISN_PROF_START)
8346 // move the profile start after "endtry" so that it's not counted when 8346 // move the profile start after "endtry" so that it's not counted when
8347 // the exception is rethrown. 8347 // the exception is rethrown.
8348 --instr->ga_len; 8348 --instr->ga_len;
8349 #endif 8349 #endif
8350 8350
8351 // Fill in the "end" label in jumps at the end of the blocks, if not 8351 // Fill in the "end" label in jumps at the end of the blocks, if not
8352 // done by ":finally". 8352 // done by ":finally".
8353 compile_fill_jump_to_end(&scope->se_u.se_try.ts_end_label, 8353 compile_fill_jump_to_end(&scope->se_u.se_try.ts_end_label,