diff --git a/handy.h b/handy.h index 3dbd1388d25c..66f3ee86601c 100644 --- a/handy.h +++ b/handy.h @@ -2015,7 +2015,7 @@ END_EXTERN_C # define toLOWER_LC(c) (isascii(c) ? tolower(c) : (c)) # define toUPPER_LC(c) (isascii(c) ? toupper(c) : (c)) -# define toFOLD_LC(c) (isascii(c) ? tolower(c) : (c)) +# define toFOLD_LC(c) toLOWER_LC(c) #endif