mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
patch 8.0.0555: toupper/tolower test fails on OSX without Darwin
Problem: Toupper/tolower test fails on OSX without Darwin. Solution: Skip that part of the test also for OSX. (Kazunobu Kuriyama)
This commit is contained in:
parent
1cc482069a
commit
d2381a2cad
@ -1605,7 +1605,7 @@ fun! Test_normal30_changecase()
|
|||||||
|
|
||||||
" Turkish ASCII turns to multi-byte. On Mac the Turkish locale is available
|
" Turkish ASCII turns to multi-byte. On Mac the Turkish locale is available
|
||||||
" but toupper()/tolower() don't do the right thing.
|
" but toupper()/tolower() don't do the right thing.
|
||||||
if !has('mac')
|
if !has('mac') && !has('osx')
|
||||||
try
|
try
|
||||||
lang tr_TR.UTF-8
|
lang tr_TR.UTF-8
|
||||||
set casemap=
|
set casemap=
|
||||||
|
@ -764,6 +764,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
555,
|
||||||
/**/
|
/**/
|
||||||
554,
|
554,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user