Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.4.0 #22

Merged
merged 6 commits into from
May 15, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,5 @@ t/a.txt
t/b.txt
t/c.txt
t/included.txt
t/multiline.txt
t/unclosed.txt
3 changes: 3 additions & 0 deletions MANIFEST.SKIP
Original file line number Diff line number Diff line change
Expand Up @@ -75,3 +75,6 @@
# Skip some specific files
^Makefile-premodule
^tags

# Things we're still working on
^t\/lib
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ WriteMakefile(
'Test::More' => '0',
},
PREREQ_PM => {
'Getopt::Long' => '2.50', # Per issue #17
'Getopt::Long' => '2.5', # Per issue #17
'Pod::Usage' => '0',
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
Expand Down
9 changes: 9 additions & 0 deletions bin/perlpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,15 @@ script.
Don't evaluate Perl code, just write the generated code to STDOUT.
By analogy with the C<-E> option of gcc.

=item --Elines

In case of an error in the input, perlpp normally tries to report a
file and line number close to the location of the error in the source file.
However, the match isn't always perfect. If C<--Elines> is given, errors will
be reported at the line number in the generated script. The generated
script will still include C<## sync> markers showing you about where the input
files/lines are, for ease of reference.

=item -k, --keep-going

Normally, errors in a C<!command> sequence will terminate further
Expand Down
Loading