Merge pull request #2037 from RaiKoHoff/RC2_DEV

Oniguruma bugfix (2020-03-02)
This commit is contained in:
Pairi Daiza 2020-03-02 10:00:19 +01:00 committed by GitHub
commit f9a3e84e52
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

@ -1 +1 @@
1
2

View File

@ -4559,7 +4559,7 @@ onig_regset_search_with_param(OnigRegSet* set,
if (start > end || start < str) goto mismatch_no_msa;
if (str < end) {
/* forward search only */
if (range <= start)
if (range < start)
return ONIGERR_INVALID_ARGUMENT;
}

View File

@ -3,7 +3,7 @@
<assemblyIdentity
name="Notepad3"
processorArchitecture="*"
version="5.20.302.1"
version="5.20.302.2"
type="win32"
/>
<description>Notepad3 RC2</description>

View File

@ -9,7 +9,7 @@
#define VERSION_MAJOR 5
#define VERSION_MINOR 20
#define VERSION_REV 302
#define VERSION_BUILD 1
#define VERSION_BUILD 2
#define SCINTILLA_VER 430
#define ONIGURUMA_REGEX_VER 6.9.4
#define UCHARDET_VER 2018.09.27