[Pcre-svn] [1753] code/trunk: Fix omission of (*LF) from lis…

Top Page
Delete this message
Author: Subversion repository
Date:  
To: pcre-svn
Subject: [Pcre-svn] [1753] code/trunk: Fix omission of (*LF) from list in the C++ wrapper.
Revision: 1753
          http://vcs.pcre.org/viewvc?view=rev&revision=1753
Author:   ph10
Date:     2019-05-23 17:27:33 +0100 (Thu, 23 May 2019)
Log Message:
-----------
Fix omission of (*LF) from list in the C++ wrapper.


Modified Paths:
--------------
    code/trunk/ChangeLog
    code/trunk/pcrecpp.cc


Modified: code/trunk/ChangeLog
===================================================================
--- code/trunk/ChangeLog    2019-04-20 15:06:04 UTC (rev 1752)
+++ code/trunk/ChangeLog    2019-05-23 16:27:33 UTC (rev 1753)
@@ -17,6 +17,9 @@


   lcc: "pcrecpp.cc", line 74: error: declaration aliased to undefined entity
        "_ZN7pcrecpp2RE6no_argE" [-Werror]
+       
+3. Change 2 for 8.43 omitted (*LF) from the list of start-of-pattern items. Now 
+added. 



Version 8.43 23-February-2019

Modified: code/trunk/pcrecpp.cc
===================================================================
--- code/trunk/pcrecpp.cc    2019-04-20 15:06:04 UTC (rev 1752)
+++ code/trunk/pcrecpp.cc    2019-05-23 16:27:33 UTC (rev 1753)
@@ -92,6 +92,7 @@
   "(*LIMIT_RECURSION=",
   "(*LIMIT_MATCH=",
   "(*CRLF)",
+  "(*LF)", 
   "(*CR)",
   "(*BSR_UNICODE)",
   "(*BSR_ANYCRLF)",