mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
include/ruby/oniguruma.h: Added flags needed for upcase/downcase
Unicode addition (with Kimihito Matsui) git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53499 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
c97c37a5ca
commit
eb86cd6b7b
2 changed files with 13 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
Mon Jan 11 21:28:28 2016 Martin Duerst <duerst@it.aoyama.ac.jp>
|
||||
|
||||
* include/ruby/oniguruma.h: Added flags needed for upcase/downcase
|
||||
Unicode addition (with Kimihito Matsui)
|
||||
|
||||
Mon Jan 11 09:50:24 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* configure.in: check if the API version number is consistent with
|
||||
|
|
|
@ -122,7 +122,15 @@ 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
|
||||
|
|
Loading…
Reference in a new issue