summaryrefslogtreecommitdiff
path: root/src/pcre2_tables.c
diff options
context:
space:
mode:
authorph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2017-04-14 12:08:54 +0000
committerph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2017-04-14 12:08:54 +0000
commitc9b4739289f44c68c858825c2834c1bee17ecfaa (patch)
tree06e76b1c80a626774ff014ee0c24c1b43277eaeb /src/pcre2_tables.c
parentf910baac7798652511b57b6c5671f75163abc358 (diff)
downloadpcre2-c9b4739289f44c68c858825c2834c1bee17ecfaa.tar.gz
Remove duplication typo.
git-svn-id: svn://vcs.exim.org/pcre2/code/trunk@747 6239d852-aaf2-0410-a92c-79f79f948069
Diffstat (limited to 'src/pcre2_tables.c')
-rw-r--r--src/pcre2_tables.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/pcre2_tables.c b/src/pcre2_tables.c
index b945ed7..f4da6ab 100644
--- a/src/pcre2_tables.c
+++ b/src/pcre2_tables.c
@@ -7,7 +7,7 @@ and semantics are as close as possible to those of the Perl 5 language.
Written by Philip Hazel
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
@@ -39,7 +39,7 @@ POSSIBILITY OF SUCH DAMAGE.
*/
/* 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
avoiding name clashes with the library. In this case, PCRE2_PCRE2TEST is
defined. */
@@ -148,7 +148,7 @@ two code points. The breaking rules are as follows:
1. Break at the start and end of text (pretty obviously).
-2. Do not break between a CR and LF; otherwise, break before and after
+2. Do not break between a CR and LF; otherwise, break before and after
controls.
3. Do not break Hangul syllable sequences, the rules for which are:
@@ -181,7 +181,7 @@ const uint32_t PRIV(ucp_gbtable)[] = {
(1<<ucp_gbExtend)|(1<<ucp_gbSpacingMark), /* 5 SpacingMark */
(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_gbT),