diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-11-25 21:13:47 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-11-25 21:13:47 +0000 |
commit | c96311b5be307f5a1d1b20a0ec930d63964e7335 (patch) | |
tree | f65fa05bc13a76539535f0db94e9723c51303d9a /src/version.c | |
parent | ef2c325f5e3c437b722bb96bf369ba2a5c541163 (diff) | |
download | vim-git-c96311b5be307f5a1d1b20a0ec930d63964e7335.tar.gz |
patch 9.0.0950: the pattern "\_s\zs" matches at EOLv9.0.0950
Problem: The pattern "\_s\zs" matches at EOL.
Solution: Make the pattern "\_s\zs" match at the start of the next line.
(closes #11617)
Diffstat (limited to 'src/version.c')
-rw-r--r-- | src/version.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/version.c b/src/version.c index e6fc986fd..9566edd99 100644 --- a/src/version.c +++ b/src/version.c @@ -696,6 +696,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 950, +/**/ 949, /**/ 948, |