summaryrefslogtreecommitdiff
path: root/src/proto
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-05-05 12:20:28 +0100
committerBram Moolenaar <Bram@vim.org>2022-05-05 12:20:28 +0100
commite442d59f6d6732c226d636067c07b7342838b36b (patch)
treefb5ae54c35da661437deda14a7feee9577d39566 /src/proto
parent2a2707d03337d0bb7d5fd1770238809618653d4a (diff)
downloadvim-git-e442d59f6d6732c226d636067c07b7342838b36b.tar.gz
patch 8.2.4869: expression in command block does not look after NLv8.2.4869
Problem: Expression in command block does not look after NL. Solution: Skip over NL to check what follows. (closes #10358)
Diffstat (limited to 'src/proto')
-rw-r--r--src/proto/eval.pro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/eval.pro b/src/proto/eval.pro
index 49dc65b8a..e6cd8928d 100644
--- a/src/proto/eval.pro
+++ b/src/proto/eval.pro
@@ -32,7 +32,7 @@ void free_for_info(void *fi_void);
void set_context_for_expression(expand_T *xp, char_u *arg, cmdidx_T cmdidx);
int pattern_match(char_u *pat, char_u *text, int ic);
char_u *eval_next_non_blank(char_u *arg, evalarg_T *evalarg, int *getnext);
-char_u *eval_next_line(evalarg_T *evalarg);
+char_u *eval_next_line(char_u *arg, evalarg_T *evalarg);
char_u *skipwhite_and_linebreak(char_u *arg, evalarg_T *evalarg);
void init_evalarg(evalarg_T *evalarg);
void clear_evalarg(evalarg_T *evalarg, exarg_T *eap);