summaryrefslogtreecommitdiff
path: root/src/proto/regexp.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-04-20 19:42:10 +0200
committerBram Moolenaar <Bram@vim.org>2020-04-20 19:42:10 +0200
commit2c5ed4e3300378ce76c8d9c3818d6f73e5119f68 (patch)
tree1fa5e72a63e160710ee6fd59fef09c8f334d0808 /src/proto/regexp.pro
parentfaac410409a8d693a0326ad9db42dca85419a391 (diff)
downloadvim-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.pro3
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);