[Pcre-svn] [747] code/trunk: Remove duplication typo.

Inizio della pagina
Delete this message
Autore: Subversion repository
Data:  
To: pcre-svn
Oggetto: [Pcre-svn] [747] code/trunk: Remove duplication typo.
Revision: 747
          http://www.exim.org/viewvc/pcre2?view=rev&revision=747
Author:   ph10
Date:     2017-04-14 13:08:54 +0100 (Fri, 14 Apr 2017)
Log Message:
-----------
Remove duplication typo.


Modified Paths:
--------------
    code/trunk/ChangeLog
    code/trunk/src/pcre2_tables.c


Modified: code/trunk/ChangeLog
===================================================================
--- code/trunk/ChangeLog    2017-04-14 12:02:40 UTC (rev 746)
+++ code/trunk/ChangeLog    2017-04-14 12:08:54 UTC (rev 747)
@@ -133,7 +133,9 @@


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
------------------------------


Modified: code/trunk/src/pcre2_tables.c
===================================================================
--- code/trunk/src/pcre2_tables.c    2017-04-14 12:02:40 UTC (rev 746)
+++ code/trunk/src/pcre2_tables.c    2017-04-14 12:08:54 UTC (rev 747)
@@ -7,7 +7,7 @@


                        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 @@
*/

/* 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 @@

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 @@

    (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),