Skip to content

Commit 50db492

Browse files
authored
Merge pull request #22 from cxw42/inproc
v0.4.0
2 parents 28f32b9 + 5f78bf4 commit 50db492

File tree

10 files changed

+266
-74
lines changed

10 files changed

+266
-74
lines changed

MANIFEST

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,5 @@ t/a.txt
2121
t/b.txt
2222
t/c.txt
2323
t/included.txt
24+
t/multiline.txt
25+
t/unclosed.txt

MANIFEST.SKIP

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,3 +75,6 @@
7575
# Skip some specific files
7676
^Makefile-premodule
7777
^tags
78+
79+
# Things we're still working on
80+
^t\/lib

Makefile.PL

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ WriteMakefile(
3636
'Test::More' => '0',
3737
},
3838
PREREQ_PM => {
39-
'Getopt::Long' => '2.50', # Per issue #17
39+
'Getopt::Long' => '2.5', # Per issue #17
4040
'Pod::Usage' => '0',
4141
},
4242
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },

bin/perlpp

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,15 @@ script.
5959
Don't evaluate Perl code, just write the generated code to STDOUT.
6060
By analogy with the C<-E> option of gcc.
6161
62+
=item --Elines
63+
64+
In case of an error in the input, perlpp normally tries to report a
65+
file and line number close to the location of the error in the source file.
66+
However, the match isn't always perfect. If C<--Elines> is given, errors will
67+
be reported at the line number in the generated script. The generated
68+
script will still include C<## sync> markers showing you about where the input
69+
files/lines are, for ease of reference.
70+
6271
=item -k, --keep-going
6372
6473
Normally, errors in a C<!command> sequence will terminate further

0 commit comments

Comments
 (0)