diff options
| author | Jörg Frings-Fürst <debian@jff.email> | 2021-04-26 22:25:42 +0200 | 
|---|---|---|
| committer | Jörg Frings-Fürst <debian@jff.email> | 2021-04-26 22:25:42 +0200 | 
| commit | 5d5f76cad47d13dc0dd4328c2172ddc1d4b19d7b (patch) | |
| tree | cd59a8ea003d6768af284fc913353983e2794a58 /src/regposix.c | |
| parent | eac65ba44805c402f894b700b602c2e891f92a84 (diff) | |
| parent | 96b0c9871630512ec2c2e84072da0085d68d740f (diff) | |
Merge branch 'release/debian/6.9.7.1-1'debian/6.9.7.1-1
Diffstat (limited to 'src/regposix.c')
| -rw-r--r-- | src/regposix.c | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/src/regposix.c b/src/regposix.c index 497ba02..494446f 100644 --- a/src/regposix.c +++ b/src/regposix.c @@ -2,7 +2,7 @@    regposix.c - Oniguruma (regular expression library)  **********************************************************************/  /*- - * Copyright (c) 2002-2020  K.Kosako + * Copyright (c) 2002-2021  K.Kosako   * All rights reserved.   *   * Redistribution and use in source and binary forms, with or without @@ -120,6 +120,7 @@ onig2posix_error_code(int code)      { ONIGERR_NUMBERED_BACKREF_OR_CALL_NOT_ALLOWED,       REG_BADPAT  },      { ONIGERR_TOO_BIG_WIDE_CHAR_VALUE,                    REG_EONIG_BADWC },      { ONIGERR_TOO_LONG_WIDE_CHAR_VALUE,                   REG_EONIG_BADWC }, +    { ONIGERR_UNDEFINED_OPERATOR,                         REG_BADPAT  },      { ONIGERR_INVALID_CODE_POINT_VALUE,                   REG_EONIG_BADWC },      { ONIGERR_EMPTY_GROUP_NAME,                           REG_BADPAT },      { ONIGERR_INVALID_GROUP_NAME,                         REG_BADPAT }, @@ -141,6 +142,7 @@ onig2posix_error_code(int code)      { ONIGERR_INVALID_CALLOUT_TAG_NAME,                   REG_BADPAT },      { ONIGERR_INVALID_CALLOUT_ARG,                        REG_BADPAT },      { ONIGERR_NOT_SUPPORTED_ENCODING_COMBINATION,         REG_EONIG_BADARG }, +    { ONIGERR_VERY_INEFFICIENT_PATTERN,                   REG_BADPAT },      { ONIGERR_LIBRARY_IS_NOT_INITIALIZED,                 REG_EONIG_INTERNAL }    }; | 
