diff options
Diffstat (limited to 'enc/utf_16le.c')
-rw-r--r-- | enc/utf_16le.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/enc/utf_16le.c b/enc/utf_16le.c index e972cb95f0..8feb7ad769 100644 --- a/enc/utf_16le.c +++ b/enc/utf_16le.c @@ -81,11 +81,8 @@ utf16le_is_mbc_newline(const UChar* p, const UChar* end, if (*p == 0x0a && *(p+1) == 0x00) return 1; #ifdef USE_UNICODE_ALL_LINE_TERMINATORS - if (( -#ifndef USE_CRNL_AS_LINE_TERMINATOR - *p == 0x0d || -#endif - *p == 0x85) && *(p+1) == 0x00) + if ((*p == 0x0b || *p == 0x0c || *p == 0x0d || *p == 0x85) + && *(p+1) == 0x00) return 1; if (*(p+1) == 0x20 && (*p == 0x29 || *p == 0x28)) return 1; @@ -245,5 +242,7 @@ OnigEncodingDefine(utf_16le, UTF_16LE) = { onigenc_unicode_is_code_ctype, onigenc_utf16_32_get_ctype_code_range, utf16le_left_adjust_char_head, - onigenc_always_false_is_allowed_reverse_match + onigenc_always_false_is_allowed_reverse_match, + 0, + ONIGENC_FLAG_UNICODE, }; |