From 02aecdcc4208686d86786d28b2289d5fcdd25994 Mon Sep 17 00:00:00 2001 From: duerst Date: Wed, 27 Jan 2016 09:54:38 +0000 Subject: * enc/unicode.c: Fixed bit mask in macro OnigCodePointCount git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53670 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- enc/unicode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'enc/unicode.c') diff --git a/enc/unicode.c b/enc/unicode.c index 4fb742a034..6866285d9f 100644 --- a/enc/unicode.c +++ b/enc/unicode.c @@ -72,7 +72,7 @@ static const unsigned short EncUNICODE_ISO_8859_1_CtypeTable[256] = { }; /* use bottom bytes for actual code point count; 3 bits is more than enough */ -#define OnigCodePointCount(n) ((n)&0x111) +#define OnigCodePointCount(n) ((n)&0x7) typedef struct { int n; -- cgit v1.2.3