summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog11
-rw-r--r--enc/unicode.c6
-rw-r--r--include/ruby/oniguruma.h47
3 files changed, 46 insertions, 18 deletions
@@ -1,6 +1,15 @@
Wed Feb 24 21:03:04 2016 Tanaka Akira <[email protected]>
- * random.c (limited_rand): Add a specialized path for the limit fits
in 32 bit.
Tue Feb 23 21:52:24 2016 Martin Duerst <[email protected]>
@@ -71,10 +71,6 @@ static const unsigned short EncUNICODE_ISO_8859_1_CtypeTable[256] = {
0x30e2, 0x30e2, 0x30e2, 0x30e2, 0x30e2, 0x30e2, 0x30e2, 0x30e2
};
-/* use bottom bytes for actual code point count; 3 bits is more than enough */
-#define OnigCodePointCount(n) ((n)&0x7)
-#define OnigCaseFoldFlags(n) ((n)&~0x7)
-
typedef struct {
int n;
OnigCodePoint code[3];
@@ -144,7 +140,7 @@ code3_equal(const OnigCodePoint *x, const OnigCodePoint *y)
#define U ONIGENC_CASE_UPCASE
#define D ONIGENC_CASE_DOWNCASE
#define F ONIGENC_CASE_FOLD
-#define T(n) ONIGENC_CASE_TITLECASE
#include "enc/unicode/casefold.h"
@@ -116,22 +116,45 @@ typedef ptrdiff_t OnigPosition;
#define ONIG_INFINITE_DISTANCE ~((OnigDistance )0)
typedef unsigned int OnigCaseFoldType; /* case fold flag */
ONIG_EXTERN OnigCaseFoldType OnigDefaultCaseFoldFlag;
-/* #define ONIGENC_CASE_FOLD_HIRAGANA_KATAKANA (1<<1) */
-/* #define ONIGENC_CASE_FOLD_KATAKANA_WIDTH (1<<2) */
-#define ONIGENC_CASE_TITLECASE (1<<10)
-#define ONIGENC_CASE_UPCASE (1<<11)
-#define ONIGENC_CASE_DOWNCASE (1<<12)
-#define ONIGENC_CASE_FOLD (1<<13)
-#define ONIGENC_CASE_ONCEONLY (1<<14)
-#define ONIGENC_CASE_MODIFIED (1<<15)
-#define ONIGENC_CASE_ASCII_ONLY (1<<19)
-#define ONIGENC_CASE_FOLD_TURKISH_AZERI (1<<20)
-#define ONIGENC_CASE_FOLD_LITHUANIAN (1<<21)
-#define INTERNAL_ONIGENC_CASE_FOLD_MULTI_CHAR (1<<30)
#define ONIGENC_CASE_FOLD_MIN INTERNAL_ONIGENC_CASE_FOLD_MULTI_CHAR
#define ONIGENC_CASE_FOLD_DEFAULT OnigDefaultCaseFoldFlag