comparison src/proto/ex_eval.pro @ 17620:072efa9ca875 v8.1.1807

patch 8.1.1807: more functions can be used as a method commit https://github.com/vim/vim/commit/25e42231d3ee27feec2568fa4be2aa2bfba82ae5 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Aug 4 15:04:10 2019 +0200 patch 8.1.1807: more functions can be used as a method Problem: More functions can be used as a method. Solution: Add append(), appendbufline(), assert_equal(), etc. Also add the :eval command.
author Bram Moolenaar <Bram@vim.org>
date Sun, 04 Aug 2019 15:15:06 +0200
parents 55ccc2d353bd
children 0f7ae8010787
comparison
equal deleted inserted replaced
17619:f9976baad617 17620:072efa9ca875
10 char *get_exception_string(void *value, except_type_T type, char_u *cmdname, int *should_free); 10 char *get_exception_string(void *value, except_type_T type, char_u *cmdname, int *should_free);
11 void discard_current_exception(void); 11 void discard_current_exception(void);
12 void report_make_pending(int pending, void *value); 12 void report_make_pending(int pending, void *value);
13 void report_resume_pending(int pending, void *value); 13 void report_resume_pending(int pending, void *value);
14 void report_discard_pending(int pending, void *value); 14 void report_discard_pending(int pending, void *value);
15 void ex_eval(exarg_T *eap);
15 void ex_if(exarg_T *eap); 16 void ex_if(exarg_T *eap);
16 void ex_endif(exarg_T *eap); 17 void ex_endif(exarg_T *eap);
17 void ex_else(exarg_T *eap); 18 void ex_else(exarg_T *eap);
18 void ex_while(exarg_T *eap); 19 void ex_while(exarg_T *eap);
19 void ex_continue(exarg_T *eap); 20 void ex_continue(exarg_T *eap);