aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--enc/unicode.c18
-rw-r--r--test/ruby/enc/test_emoji_breaks.rb3
2 files changed, 10 insertions, 11 deletions
diff --git a/enc/unicode.c b/enc/unicode.c
index b08b1450ba..9e46689655 100644
--- a/enc/unicode.c
+++ b/enc/unicode.c
@@ -802,19 +802,21 @@ onigenc_unicode_GCB_ranges_GAZ[] = {
const OnigCodePoint
onigenc_unicode_GCB_ranges_E_Base[] = {
- 3,
- 0x1F3F3, 0x1F3F3,
- 0x1F441, 0x1F441,
- 0x1F46F, 0x1F46F,
+ 5,
+ 0x1F3F3, 0x1F3F3, /* WAVING WHITE FLAG */
+ 0x1F441, 0x1F441, /* EYE */
+ 0x1F46F, 0x1F46F, /* WOMAN WITH BUNNY EARS */
+ 0x1F93C, 0x1F93C, /* WRESTLERS */
+ 0x1F9DE, 0x1F9DF, /* GENIE, ZOMBIE */
};
const OnigCodePoint
onigenc_unicode_GCB_ranges_Emoji[] = {
4,
- 0x2640, 0x2640,
- 0x2642, 0x2642,
- 0x2695, 0x2696,
- 0x2708, 0x2708,
+ 0x2640, 0x2640, /* FEMALE SIGN */
+ 0x2642, 0x2642, /* MALE SIGN */
+ 0x2695, 0x2696, /* SCALES */
+ 0x2708, 0x2708, /* AIRPLANE */
};
#if 0
diff --git a/test/ruby/enc/test_emoji_breaks.rb b/test/ruby/enc/test_emoji_breaks.rb
index 78aa5db88f..932dda35fa 100644
--- a/test/ruby/enc/test_emoji_breaks.rb
+++ b/test/ruby/enc/test_emoji_breaks.rb
@@ -25,9 +25,6 @@ class BreakTest
# raise ArgumentError if 0xD800 <= c and c <= 0xDFFF
c.chr('UTF-8')
end.join
- raise ArgumentError if data.match? /genie/ or comment.match? /genie/
- raise ArgumentError if data.match? /zombie/ or comment.match? /zombie/
- raise ArgumentError if data.match? /wrestling/ or comment.match? /wrestling/
end
end