mirror of
https://github.com/rizonesoft/Notepad3.git
synced 2026-06-14 21:09:05 +08:00
Merge remote-tracking branch 'notepad3_orig_rizone/master' into NewFeatures_grepWinNP3
# Conflicts: # Versions/build.txt
This commit is contained in:
commit
477e9e94ba
@ -3,7 +3,7 @@
|
||||
<assemblyIdentity
|
||||
name="Notepad3"
|
||||
processorArchitecture="*"
|
||||
version="5.20.328.1"
|
||||
version="5.20.328.2"
|
||||
type="win32"
|
||||
/>
|
||||
<description>Notepad3 RC3</description>
|
||||
|
||||
@ -4693,7 +4693,8 @@ static int _wcsicoll_s(const wchar_t* s1, const wchar_t* s2) { return wcsicoll_s
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
int CmpStdLogical(const void *s1, const void *s2) {
|
||||
if (s1 && s2) {
|
||||
if (StrIsNotEmpty(s1) && StrIsNotEmpty(s2))
|
||||
{
|
||||
int cmp = StrCmpLogicalW(((SORTLINE*)s1)->pwszSortEntry, ((SORTLINE*)s2)->pwszSortEntry);
|
||||
if (cmp == 0) {
|
||||
cmp = StrCmpLogicalW(((SORTLINE*)s1)->pwszLine, ((SORTLINE*)s2)->pwszLine);
|
||||
@ -4701,7 +4702,7 @@ int CmpStdLogical(const void *s1, const void *s2) {
|
||||
return (cmp) ? cmp : CmpStd(s1, s2);
|
||||
}
|
||||
else {
|
||||
return (s1 ? 1 : (s2 ? -1 : 0));
|
||||
return (StrIsNotEmpty(s1) ? 1 : (StrIsNotEmpty(s2) ? -1 : 0));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -9,7 +9,7 @@
|
||||
#define VERSION_MAJOR 5
|
||||
#define VERSION_MINOR 20
|
||||
#define VERSION_REV 328
|
||||
#define VERSION_BUILD 1
|
||||
#define VERSION_BUILD 2
|
||||
#define SCINTILLA_VER 432
|
||||
#define ONIGURUMA_REGEX_VER 6.9.4
|
||||
#define UCHARDET_VER 2018.09.27
|
||||
|
||||
Loading…
Reference in New Issue
Block a user