comparison src/proto/ex_eval.pro @ 25680:8556ded8a462 v8.2.3376

patch 8.2.3376: Vim9: no warning that "@r" does not do anything Commit: https://github.com/vim/vim/commit/4799cef85ce43e26f5022290b41a7c85bbab8cad Author: Bram Moolenaar <Bram@vim.org> Date: Wed Aug 25 22:37:36 2021 +0200 patch 8.2.3376: Vim9: no warning that "@r" does not do anything Problem: Vim9: no warning that "@r" does not do anything. Solution: Give a "no effect" error. (closes https://github.com/vim/vim/issues/8779)
author Bram Moolenaar <Bram@vim.org>
date Wed, 25 Aug 2021 22:45:04 +0200
parents 2063b858cad9
children 31fb1a760ad6
comparison
equal deleted inserted replaced
25679:b633748f3acb 25680:8556ded8a462
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 int throw_exception(void *value, except_type_T type, char_u *cmdname); 11 int throw_exception(void *value, except_type_T type, char_u *cmdname);
12 void discard_current_exception(void); 12 void discard_current_exception(void);
13 void catch_exception(except_T *excp); 13 void catch_exception(except_T *excp);
14 void report_make_pending(int pending, void *value); 14 void report_make_pending(int pending, void *value);
15 int cmd_is_name_only(char_u *arg);
15 void ex_eval(exarg_T *eap); 16 void ex_eval(exarg_T *eap);
16 void ex_if(exarg_T *eap); 17 void ex_if(exarg_T *eap);
17 void ex_endif(exarg_T *eap); 18 void ex_endif(exarg_T *eap);
18 void ex_else(exarg_T *eap); 19 void ex_else(exarg_T *eap);
19 void ex_while(exarg_T *eap); 20 void ex_while(exarg_T *eap);