diff options
author | Father Chrysostomos <sprout@cpan.org> | 2012-06-19 12:48:56 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2012-06-19 13:27:23 -0700 |
commit | 0cbf2b3119c2c2b27d12e6c3510baf60078d7123 (patch) | |
tree | b780c88a1667dd19eb4ecca4e65be227fd21c8bc | |
parent | 954945b80e44176480730cfb7ac7bb8c742a88e2 (diff) | |
download | perl-0cbf2b3119c2c2b27d12e6c3510baf60078d7123.tar.gz |
perlhacktips: long lines
-rw-r--r-- | pod/perlhacktips.pod | 6 | ||||
-rw-r--r-- | t/porting/known_pod_issues.dat | 1 |
2 files changed, 4 insertions, 3 deletions
diff --git a/pod/perlhacktips.pod b/pod/perlhacktips.pod index 735f11b755..05861fea2f 100644 --- a/pod/perlhacktips.pod +++ b/pod/perlhacktips.pod @@ -886,7 +886,8 @@ parse also C and C++. Download the pmd-bin-X.Y.zip () from the SourceForge site, extract the pmd-X.Y.jar from it, and then run that on source code thusly: - java -cp pmd-X.Y.jar net.sourceforge.pmd.cpd.CPD --minimum-tokens 100 --files /some/where/src --language c > cpd.txt + java -cp pmd-X.Y.jar net.sourceforge.pmd.cpd.CPD \ + --minimum-tokens 100 --files /some/where/src --language c > cpd.txt You may run into memory limits, in which case you should use the -Xmx option: @@ -1170,7 +1171,8 @@ AddressSanitizer is available for linux, Mac OS X and soon on Windows. You should create the perl with AddressSanitizer using: sh Configure -Dcc=clang -Accflags=-faddress-sanitizer \ - -Aldflags=-faddress-sanitizer -Alddlflags=-shared\ -faddress-sanitizer + -Aldflags=-faddress-sanitizer \ + -Alddlflags=-shared\ -faddress-sanitizer where these arguments mean: diff --git a/t/porting/known_pod_issues.dat b/t/porting/known_pod_issues.dat index 68eeeb223b..603d58a537 100644 --- a/t/porting/known_pod_issues.dat +++ b/t/porting/known_pod_issues.dat @@ -237,7 +237,6 @@ pod/perlguts.pod ? Should you be using F<...> or maybe L<...> instead of 2 pod/perlguts.pod ? Should you be using L<...> instead of 1 pod/perlhack.pod ? Should you be using L<...> instead of 1 pod/perlhack.pod Verbatim line length including indents exceeds 79 by 1 -pod/perlhacktips.pod Verbatim line length including indents exceeds 79 by 2 pod/perlhist.pod Verbatim line length including indents exceeds 79 by 2 pod/perlhpux.pod Verbatim line length including indents exceeds 79 by 3 pod/perlhurd.pod Verbatim line length including indents exceeds 79 by 2 |