From a7c987968de91bcc4cada65ce90b23c2f89957e3 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 --- ChangeLog | 4 ++++ enc/unicode.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 101499ba29..f6f302c22b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Wed Jan 27 18:53:40 2016 Martin Duerst + + * enc/unicode.c: Fixed bit mask in macro OnigCodePointCount + Wed Jan 27 17:54:42 2016 Martin Duerst * enc/unicode.c: Protect code point count by macro, in order to 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