mirror of
https://github.com/vim/vim.git
synced 2025-10-26 09:14:23 -04:00
patch 9.1.1648: MS-Windows: some style issues with patch v9.1.1646
Problem: MS-Windows: some style issues with patch v9.1.1646 Solution: Fix typose and code style issues (zeertzjq). closes: #18036 Signed-off-by: zeertzjq <zeertzjq@outlook.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
committed by
Christian Brabandt
parent
44c8072ef6
commit
14afa278c1
@@ -360,7 +360,7 @@ repeat:
|
||||
|
||||
// FullName_save() is slow, don't use it when not needed.
|
||||
if (*p != NUL || !vim_isAbsName(*fnamep)
|
||||
#ifdef MSWIN // enforce drive letter on windows paths
|
||||
#ifdef MSWIN // enforce drive letter on Windows paths
|
||||
|| **fnamep == '/' || **fnamep == '\\'
|
||||
#endif
|
||||
)
|
||||
@@ -3114,9 +3114,9 @@ vim_fnamencmp(char_u *x, char_u *y, size_t len)
|
||||
int cx = NUL;
|
||||
int cy = NUL;
|
||||
|
||||
#ifdef MSWIN
|
||||
# ifdef MSWIN
|
||||
/*
|
||||
* To allow proper comparisson of absolute paths:
|
||||
* To allow proper comparison of absolute paths:
|
||||
* - one with explicit drive letter C:\xxx
|
||||
* - another with implicit drive letter \xxx
|
||||
* advance the pointer, of the explicit one, to skip the drive
|
||||
@@ -3135,7 +3135,7 @@ vim_fnamencmp(char_u *x, char_u *y, size_t len)
|
||||
py += mb_ptr2len(py);
|
||||
cy = PTR2CHAR(py);
|
||||
if (cy == ':' && drive == _getdrive())
|
||||
{ // skip the drive for comparisson
|
||||
{ // skip the drive for comparison
|
||||
py += mb_ptr2len(py);
|
||||
break;
|
||||
}
|
||||
@@ -3148,7 +3148,7 @@ vim_fnamencmp(char_u *x, char_u *y, size_t len)
|
||||
px = py;
|
||||
py = tmp;
|
||||
}
|
||||
#endif
|
||||
# endif
|
||||
|
||||
while (len > 0)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user