summaryrefslogtreecommitdiff
path: root/support/latexindent/LatexIndent
diff options
context:
space:
mode:
Diffstat (limited to 'support/latexindent/LatexIndent')
-rw-r--r--support/latexindent/LatexIndent/Environment.pm2
-rw-r--r--support/latexindent/LatexIndent/Version.pm4
2 files changed, 3 insertions, 3 deletions
diff --git a/support/latexindent/LatexIndent/Environment.pm b/support/latexindent/LatexIndent/Environment.pm
index 401cbecbee..c658acedf2 100644
--- a/support/latexindent/LatexIndent/Environment.pm
+++ b/support/latexindent/LatexIndent/Environment.pm
@@ -51,7 +51,7 @@ sub construct_environments_regexp{
(
(?: # cluster-only (), don't capture
(?! # don't include \begin in the body
- (?:\\begin) # cluster-only (), don't capture
+ (?:\\begin\{) # cluster-only (), don't capture
). # any character, but not \\begin
)*? # non-greedy
(\R*)? # possible line breaks (into $5)
diff --git a/support/latexindent/LatexIndent/Version.pm b/support/latexindent/LatexIndent/Version.pm
index e6be60e32e..b2c63ba457 100644
--- a/support/latexindent/LatexIndent/Version.pm
+++ b/support/latexindent/LatexIndent/Version.pm
@@ -19,6 +19,6 @@ use warnings;
use Exporter qw/import/;
our @EXPORT_OK = qw/$versionNumber $versionDate/;
-our $versionNumber = '3.8.1';
-our $versionDate = '2020-05-05';
+our $versionNumber = '3.8.2';
+our $versionDate = '2020-06-10';
1