comparison src/proto/vim9cmds.pro @ 30065:6cf788ab844c v9.0.0370

patch 9.0.0370: cleaning up afterwards can make a function messy Commit: https://github.com/vim/vim/commit/1d84f7608f1e41dad03b8cc7925895437775f7c0 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Sep 3 21:35:53 2022 +0100 patch 9.0.0370: cleaning up afterwards can make a function messy Problem: Cleaning up afterwards can make a function messy. Solution: Add the :defer command.
author Bram Moolenaar <Bram@vim.org>
date Sat, 03 Sep 2022 22:45:03 +0200
parents 4b23672d1f0e
children a542dfb1c1a2
comparison
equal deleted inserted replaced
30064:a8f1fbaa43c8 30065:6cf788ab844c
19 char_u *compile_catch(char_u *arg, cctx_T *cctx); 19 char_u *compile_catch(char_u *arg, cctx_T *cctx);
20 char_u *compile_finally(char_u *arg, cctx_T *cctx); 20 char_u *compile_finally(char_u *arg, cctx_T *cctx);
21 char_u *compile_endtry(char_u *arg, cctx_T *cctx); 21 char_u *compile_endtry(char_u *arg, cctx_T *cctx);
22 char_u *compile_throw(char_u *arg, cctx_T *cctx); 22 char_u *compile_throw(char_u *arg, cctx_T *cctx);
23 char_u *compile_eval(char_u *arg, cctx_T *cctx); 23 char_u *compile_eval(char_u *arg, cctx_T *cctx);
24 char_u *compile_defer(char_u *arg_start, cctx_T *cctx);
24 char_u *compile_mult_expr(char_u *arg, int cmdidx, cctx_T *cctx); 25 char_u *compile_mult_expr(char_u *arg, int cmdidx, cctx_T *cctx);
25 char_u *compile_put(char_u *arg, exarg_T *eap, cctx_T *cctx); 26 char_u *compile_put(char_u *arg, exarg_T *eap, cctx_T *cctx);
26 char_u *compile_exec(char_u *line_arg, exarg_T *eap, cctx_T *cctx); 27 char_u *compile_exec(char_u *line_arg, exarg_T *eap, cctx_T *cctx);
27 char_u *compile_script(char_u *line, cctx_T *cctx); 28 char_u *compile_script(char_u *line, cctx_T *cctx);
28 char_u *compile_substitute(char_u *arg, exarg_T *eap, cctx_T *cctx); 29 char_u *compile_substitute(char_u *arg, exarg_T *eap, cctx_T *cctx);