diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2018-12-21 20:06:28 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2018-12-21 20:06:28 +0100 |
commit | f883fa5bd37b6420f5dc25027a68289c64028063 (patch) | |
tree | 80452d3b1840e553402538830e903ed9fecdb3a8 /src/euc_jp.c | |
parent | 66dfd6613394a8903701840bbc9d67de537e597e (diff) | |
parent | f1aff0cc17934fa45d9520dae6986562e033cb8f (diff) |
Merge branch 'release/debian/6.9.1-1'debian/6.9.1-1
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 }; |