summaryrefslogtreecommitdiffstats
path: root/src/proto/ex_eval.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-08-05 20:40:03 +0200
committerBram Moolenaar <Bram@vim.org>2021-08-05 20:40:03 +0200
commit63b9173693015b135aad8e3657bef5e7f776787e (patch)
tree562fd413b11ae6a4c45f39538b89ec881aebf2cb /src/proto/ex_eval.pro
parentaf647e76cacc60d3cfc5df3ff5b3d9d4b69b519d (diff)
patch 8.2.3297: cannot use all commands inside a {} blockv8.2.3297
Problem: Cannot use all commands inside a {} block after :command and :autocmd. Solution: Do consider \n to separate commands. (closes #8620)
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 f1861612a5..f5037c9325 100644
--- a/src/proto/ex_eval.pro
+++ b/src/proto/ex_eval.pro
@@ -22,6 +22,7 @@ void ex_break(exarg_T *eap);
void ex_endwhile(exarg_T *eap);
void ex_block(exarg_T *eap);
void ex_endblock(exarg_T *eap);
+int inside_block(exarg_T *eap);
void ex_throw(exarg_T *eap);
void do_throw(cstack_T *cstack);
void ex_try(exarg_T *eap);