summaryrefslogtreecommitdiffstats
path: root/src/proto/ex_eval.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-08-25 22:37:36 +0200
committerBram Moolenaar <Bram@vim.org>2021-08-25 22:37:36 +0200
commit4799cef85ce43e26f5022290b41a7c85bbab8cad (patch)
tree89dc1cbf035efacf2f6091eb3396dc44d51857de /src/proto/ex_eval.pro
parentdf9070e300dabf0c54de87a75973a80adb38afa3 (diff)
patch 8.2.3376: Vim9: no warning that "@r" does not do anythingv8.2.3376
Problem: Vim9: no warning that "@r" does not do anything. Solution: Give a "no effect" error. (closes #8779)
Diffstat (limited to 'src/proto/ex_eval.pro')
-rw-r--r--src/proto/ex_eval.pro1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/ex_eval.pro b/src/proto/ex_eval.pro
index f5037c9325..a3be429b19 100644
--- a/src/proto/ex_eval.pro
+++ b/src/proto/ex_eval.pro
@@ -12,6 +12,7 @@ int throw_exception(void *value, except_type_T type, char_u *cmdname);
void discard_current_exception(void);
void catch_exception(except_T *excp);
void report_make_pending(int pending, void *value);
+int cmd_is_name_only(char_u *arg);
void ex_eval(exarg_T *eap);
void ex_if(exarg_T *eap);
void ex_endif(exarg_T *eap);