diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2025-03-16 12:06:26 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2025-03-16 12:06:26 +0100 |
commit | 048f2aabecc8adf1fcc76ecf0dcad9ef07c0ae98 (patch) | |
tree | 6e32c4075b0bef0cfa7a9c3ece4294db7a10c046 /src/utf16_le.c | |
parent | b0e9d5f1322c403a2ba1df7f86e27d2514f576da (diff) | |
parent | e6ce8c11c114a794f5523eaaec52688716873b72 (diff) |
Merge branch 'feature/upstream' into develop
Diffstat (limited to 'src/utf16_le.c')
-rw-r--r-- | src/utf16_le.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/utf16_le.c b/src/utf16_le.c index c76a610..11804fe 100644 --- a/src/utf16_le.c +++ b/src/utf16_le.c @@ -2,7 +2,7 @@ utf16_le.c - Oniguruma (regular expression library) **********************************************************************/ /*- - * Copyright (c) 2002-2023 K.Kosako + * Copyright (c) 2002-2024 K.Kosako * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -41,8 +41,9 @@ init(void) enc = ONIG_ENCODING_UTF16_LE; - name = "F\000A\000I\000L\000\000\000"; BC0_P(name, fail); + name = "F\000A\000I\000L\000\000\000"; BC0_P(name, fail); name = "M\000I\000S\000M\000A\000T\000C\000H\000\000\000"; BC0_P(name, mismatch); + name = "S\000K\000I\000P\000\000\000"; BC0_P(name, skip); name = "M\000A\000X\000\000\000"; args[0] = ONIG_TYPE_TAG | ONIG_TYPE_LONG; |