summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2020-01-20 08:37:25 +0200
committerSergey Poznyakoff <gray@gnu.org>2020-01-20 08:37:25 +0200
commita984ca110f132e447e5010ab1d2b7e8cb94b1b84 (patch)
tree8357e894cb36350d93a3ad2650373f662e3f426f
parentf6db3dba6267aa6909484d2b0433bed03ee6fa76 (diff)
downloadacpp-a984ca110f132e447e5010ab1d2b7e8cb94b1b84.tar.gz
acpp-a984ca110f132e447e5010ab1d2b7e8cb94b1b84.tar.bz2
Version 1.04v1.04
-rw-r--r--Changes5
-rw-r--r--Makefile.PL2
-rw-r--r--lib/Apache/Config/Preproc.pm2
-rw-r--r--lib/Apache/Config/Preproc/locus.pm2
4 files changed, 8 insertions, 3 deletions
diff --git a/Changes b/Changes
index 867a3e8..f65e745 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,8 @@
+1.04 2020-01-20
+
+* New preprocessing module "locus" adds file location information to
+each node in the parse tree.
+
1.03 2019-04-30
* Handle include statements with directory as argument
diff --git a/Makefile.PL b/Makefile.PL
index debf37a..e573b30 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -11,7 +11,7 @@ WriteMakefile(NAME => 'Apache::Config::Preproc',
'Apache::Admin::Config' => '0.95',
'File::Spec' => '3.39_02',
'Text::ParseWords' => '3.27',
- 'Text::Locus' => '1.02',
+ 'Text::Locus' => '1.03',
'File::Spec' => 0,
'IPC::Open3' => 0
},
diff --git a/lib/Apache/Config/Preproc.pm b/lib/Apache/Config/Preproc.pm
index f230726..70b202d 100644
--- a/lib/Apache/Config/Preproc.pm
+++ b/lib/Apache/Config/Preproc.pm
@@ -5,7 +5,7 @@ use warnings;
use Carp;
use version 0.77;
-our $VERSION = '1.03';
+our $VERSION = '1.04';
sub import {
my $class = shift;
diff --git a/lib/Apache/Config/Preproc/locus.pm b/lib/Apache/Config/Preproc/locus.pm
index 52a51ae..8c22613 100644
--- a/lib/Apache/Config/Preproc/locus.pm
+++ b/lib/Apache/Config/Preproc/locus.pm
@@ -146,7 +146,7 @@ Apache::Config::Preproc::locus - attach file location to each parse node
B<Locus> attaches to each node in the parse tree a B<Text::Locus> object
which describes the location of the corresponding statement in the source
-file. The location for each node can be accessed via the B<locus> method
+file. The location of a node can be accessed via the B<locus> method
as illustrated in the synopsis.
Technically speaking, this module replaces each instance of

Return to:

Send suggestions and report system problems to the System administrator.