diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2018-12-21 13:52:15 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2018-12-21 13:52:15 +0100 |
commit | b746c25a6800aabc468eee653d8bca8e7810f633 (patch) | |
tree | ae87806ec6d6b65e9d3ae1729ccf253e12324e96 /src/euc_jp.c | |
parent | eb5b295d37e9150e169cc95cbbc39f6ab7b88b2f (diff) | |
parent | 8d7d4edacab0298f96a3826819c01b4e8f6cbcfb (diff) |
Merge branch 'feature/upstream' into develop
Diffstat (limited to 'src/euc_jp.c')
-rw-r--r-- | src/euc_jp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/euc_jp.c b/src/euc_jp.c index 5d3c1f9..c1ab89e 100644 --- a/src/euc_jp.c +++ b/src/euc_jp.c @@ -151,7 +151,7 @@ code_to_mbc(OnigCodePoint code, UChar *buf) #if 1 if (enclen(ONIG_ENCODING_EUC_JP, buf) != (p - buf)) return ONIGERR_INVALID_CODE_POINT_VALUE; -#endif +#endif return (int )(p - buf); } @@ -307,6 +307,6 @@ OnigEncodingType OnigEncodingEUC_JP = { NULL, /* init */ NULL, /* is_initialized */ is_valid_mbc_string, - ENC_FLAG_ASCII_COMPATIBLE, + ENC_FLAG_ASCII_COMPATIBLE|ENC_FLAG_SKIP_OFFSET_1_OR_0, 0, 0 }; |