From b5618916b1164f90254ebb8c6eed2b5f86fdcc12 Mon Sep 17 00:00:00 2001 From: Neil Date: Tue, 29 Mar 2016 15:12:35 +1100 Subject: Bug [#1822]. Doubled size of compiled regex buffer. --- doc/ScintillaHistory.html | 4 ++++ src/RESearch.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index 79ae769c2..71886307e 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -511,6 +511,10 @@ This is for Python 3.5.
  • + Doubled size of compiled regex buffer. + Bug #1822. +
  • +
  • SciTE bug fixed with exported HTML where extra line shown. Bug #1816.
  • diff --git a/src/RESearch.h b/src/RESearch.h index 3a7f0e4d6..23795babe 100644 --- a/src/RESearch.h +++ b/src/RESearch.h @@ -39,7 +39,7 @@ public: int Execute(CharacterIndexer &ci, int lp, int endp); enum { MAXTAG=10 }; - enum { MAXNFA=2048 }; + enum { MAXNFA=4096 }; enum { NOTFOUND=-1 }; int bopat[MAXTAG]; -- cgit v1.2.3