diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-04-20 19:42:10 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-04-20 19:42:10 +0200 |
commit | 2c5ed4e3300378ce76c8d9c3818d6f73e5119f68 (patch) | |
tree | 1fa5e72a63e160710ee6fd59fef09c8f334d0808 /src/proto/regexp.pro | |
parent | faac410409a8d693a0326ad9db42dca85419a391 (diff) | |
download | vim-git-2c5ed4e3300378ce76c8d9c3818d6f73e5119f68.tar.gz |
patch 8.2.0612: Vim9: no check for space before #commentv8.2.0612
Problem: Vim9: no check for space before #comment.
Solution: Add space checks.
Diffstat (limited to 'src/proto/regexp.pro')
-rw-r--r-- | src/proto/regexp.pro | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/proto/regexp.pro b/src/proto/regexp.pro index 27ba8e59a..d3a775415 100644 --- a/src/proto/regexp.pro +++ b/src/proto/regexp.pro @@ -1,6 +1,7 @@ /* regexp.c */ int re_multiline(regprog_T *prog); -char_u *skip_regexp(char_u *startp, int dirc, int magic); +char_u *skip_regexp(char_u *startp, int delim, int magic); +char_u *skip_regexp_err(char_u *startp, int delim, int magic); char_u *skip_regexp_ex(char_u *startp, int dirc, int magic, char_u **newp, int *dropped); reg_extmatch_T *ref_extmatch(reg_extmatch_T *em); void unref_extmatch(reg_extmatch_T *em); |