Remove duplication typo.
This commit is contained in:
parent
b38c2aaebd
commit
b35a98c403
|
@ -133,6 +133,8 @@ particular when it is serialized.
|
||||||
|
|
||||||
24. Remove a redundant line of code left in accidentally a long time ago.
|
24. Remove a redundant line of code left in accidentally a long time ago.
|
||||||
|
|
||||||
|
25. Remove a duplication typo in pcre2_tables.c
|
||||||
|
|
||||||
|
|
||||||
Version 10.23 14-February-2017
|
Version 10.23 14-February-2017
|
||||||
------------------------------
|
------------------------------
|
||||||
|
|
|
@ -7,7 +7,7 @@ and semantics are as close as possible to those of the Perl 5 language.
|
||||||
|
|
||||||
Written by Philip Hazel
|
Written by Philip Hazel
|
||||||
Original API code Copyright (c) 1997-2012 University of Cambridge
|
Original API code Copyright (c) 1997-2012 University of Cambridge
|
||||||
New API code Copyright (c) 2016 University of Cambridge
|
New API code Copyright (c) 2016-2017 University of Cambridge
|
||||||
|
|
||||||
-----------------------------------------------------------------------------
|
-----------------------------------------------------------------------------
|
||||||
Redistribution and use in source and binary forms, with or without
|
Redistribution and use in source and binary forms, with or without
|
||||||
|
@ -39,7 +39,7 @@ POSSIBILITY OF SUCH DAMAGE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* This module contains some fixed tables that are used by more than one of the
|
/* This module contains some fixed tables that are used by more than one of the
|
||||||
PCRE code modules. The tables are also #included by the pcre2test program,
|
PCRE2 code modules. The tables are also #included by the pcre2test program,
|
||||||
which uses macros to change their names from _pcre2_xxx to xxxx, thereby
|
which uses macros to change their names from _pcre2_xxx to xxxx, thereby
|
||||||
avoiding name clashes with the library. In this case, PCRE2_PCRE2TEST is
|
avoiding name clashes with the library. In this case, PCRE2_PCRE2TEST is
|
||||||
defined. */
|
defined. */
|
||||||
|
@ -181,7 +181,7 @@ const uint32_t PRIV(ucp_gbtable)[] = {
|
||||||
|
|
||||||
(1<<ucp_gbExtend)|(1<<ucp_gbSpacingMark), /* 5 SpacingMark */
|
(1<<ucp_gbExtend)|(1<<ucp_gbSpacingMark), /* 5 SpacingMark */
|
||||||
(1<<ucp_gbExtend)|(1<<ucp_gbSpacingMark)|(1<<ucp_gbL)| /* 6 L */
|
(1<<ucp_gbExtend)|(1<<ucp_gbSpacingMark)|(1<<ucp_gbL)| /* 6 L */
|
||||||
(1<<ucp_gbL)|(1<<ucp_gbV)|(1<<ucp_gbLV)|(1<<ucp_gbLVT),
|
(1<<ucp_gbV)|(1<<ucp_gbLV)|(1<<ucp_gbLVT),
|
||||||
|
|
||||||
(1<<ucp_gbExtend)|(1<<ucp_gbSpacingMark)|(1<<ucp_gbV)| /* 7 V */
|
(1<<ucp_gbExtend)|(1<<ucp_gbSpacingMark)|(1<<ucp_gbV)| /* 7 V */
|
||||||
(1<<ucp_gbT),
|
(1<<ucp_gbT),
|
||||||
|
|
Loading…
Reference in New Issue