summaryrefslogtreecommitdiff
path: root/dev-scheme/gauche/files/gauche-0.9.5-unicode.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2019-10-13 21:54:24 +0100
committerV3n3RiX <venerix@redcorelinux.org>2019-10-13 21:54:24 +0100
commitda491770b9ba5f179e18db461c49cb6f1ccf0e1f (patch)
treed3e34a8bd906741ab18cf69d8d4f732853e26ade /dev-scheme/gauche/files/gauche-0.9.5-unicode.patch
parentad6182343997a405079870a2fe91c4e0c6b94595 (diff)
parent5a165c60b9b8c4847067cb83b4be7da785d01f93 (diff)
gentoo resync : 28.09.2019
Diffstat (limited to 'dev-scheme/gauche/files/gauche-0.9.5-unicode.patch')
-rw-r--r--dev-scheme/gauche/files/gauche-0.9.5-unicode.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/dev-scheme/gauche/files/gauche-0.9.5-unicode.patch b/dev-scheme/gauche/files/gauche-0.9.5-unicode.patch
deleted file mode 100644
index a87ca5d7c39c..000000000000
--- a/dev-scheme/gauche/files/gauche-0.9.5-unicode.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-commit d31eb5c02b65514e695b45c0c01cbd45a36bac4a
-Author: OOHASHI Daichi <dico.leque.comicron@gmail.com>
-Date: Thu Oct 20 10:48:17 2016 +0900
-
- (char-general-category #\x20000) should be Lo
-
-diff --git a/src/gauche/char_utf_8.h b/src/gauche/char_utf_8.h
-index 082e764..5f92d13 100644
---- a/src/gauche/char_utf_8.h
-+++ b/src/gauche/char_utf_8.h
-@@ -294,7 +294,7 @@ static inline unsigned char Scm__LookupCharCategory(ScmChar ch)
- {
- if (ch == SCM_CHAR_INVALID || ch >= 0x10ffff) {
- return SCM_CHAR_CATEGORY_Cn;
-- } else if (ch <= 0x20000) {
-+ } else if (ch < 0x20000) {
- return ucs_general_category_00000[ch];
- } else {
- return ucs_general_category_20000(ch);