diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-04-02 21:13:25 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-04-02 21:13:25 +0200 |
commit | e8c4abbbd711af8fd3ed85ea69e9ac3d63a0d879 (patch) | |
tree | 0101dc0b69343972a82db39af16612334fbc0a8d /src/ex_eval.c | |
parent | 2c869deeb7658b6b02e525ff9412fc4a0c968688 (diff) | |
download | vim-git-e8c4abbbd711af8fd3ed85ea69e9ac3d63a0d879.tar.gz |
patch 8.2.0502: Vim9: some code is not testedv8.2.0502
Problem: Vim9: some code is not tested.
Solution: Add more tests. Fix uncovered problems.
Diffstat (limited to 'src/ex_eval.c')
-rw-r--r-- | src/ex_eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ex_eval.c b/src/ex_eval.c index 70b52a369..72da2f252 100644 --- a/src/ex_eval.c +++ b/src/ex_eval.c @@ -1527,7 +1527,7 @@ ex_catch(exarg_T *eap) else { pat = eap->arg + 1; - end = skip_regexp(pat, *eap->arg, TRUE, NULL); + end = skip_regexp(pat, *eap->arg, TRUE); } if (!give_up) |