mirror of
https://github.com/neovim/neovim.git
synced 2025-10-07 10:26:31 +00:00
vim-patch:9.0.1508: catch does not work when lines are joined with a newline
Problem: Catch does not work when lines are joined with a newline.
Solution: Set "nextcmd" appropriately. (closes vim/vim#12348)
f2588b6fc9
This commit is contained in:
@@ -2368,11 +2368,14 @@ int eval0(char *arg, typval_T *rettv, exarg_T *eap, evalarg_T *const evalarg)
|
||||
}
|
||||
}
|
||||
|
||||
// Some of the expression may not have been consumed. Do not check for
|
||||
// a next command to avoid more errors, unless "|" is following, which
|
||||
// could only be a command separator.
|
||||
if (eap != NULL && skipwhite(p)[0] == '|' && skipwhite(p)[1] != '|') {
|
||||
eap->nextcmd = check_nextcmd(p);
|
||||
if (eap != NULL && p != NULL) {
|
||||
// Some of the expression may not have been consumed.
|
||||
// Only execute a next command if it cannot be a "||" operator.
|
||||
// The next command may be "catch".
|
||||
char *nextcmd = check_nextcmd(p);
|
||||
if (nextcmd != NULL && *nextcmd != '|') {
|
||||
eap->nextcmd = nextcmd;
|
||||
}
|
||||
}
|
||||
return FAIL;
|
||||
}
|
||||
|
Reference in New Issue
Block a user