From dc0398d650e75efe9641f0c48d630f2c2027281a Mon Sep 17 00:00:00 2001 From: Neil Date: Tue, 24 Aug 2021 11:39:57 +1000 Subject: Remove line end white space. --- src/UniConversion.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/UniConversion.h') diff --git a/src/UniConversion.h b/src/UniConversion.h index ead7aae57..95ff2ad43 100644 --- a/src/UniConversion.h +++ b/src/UniConversion.h @@ -80,7 +80,7 @@ inline bool UTF8IsNEL(const unsigned char *us) noexcept { return (us[0] == 0xc2) && (us[1] == 0x85); } -// Is the sequence of 3 char a UTF-8 line end? Only the last two char are tested for a NEL. +// Is the sequence of 3 char a UTF-8 line end? Only the last two char are tested for a NEL. constexpr bool UTF8IsMultibyteLineEnd(unsigned char ch0, unsigned char ch1, unsigned char ch2) noexcept { return ((ch0 == 0xe2) && (ch1 == 0x80) && ((ch2 == 0xa8) || (ch2 == 0xa9))) || -- cgit v1.2.3