diff options
author | ville <ville@localhost> | 2009-11-23 22:24:15 +0000 |
---|---|---|
committer | ville <ville@localhost> | 2009-11-23 22:24:15 +0000 |
commit | 72892aa4792bfe9c4268579a674e79e91ed43fc9 (patch) | |
tree | 0f673f663994fa75ba3dba3cd5fafa0353eb4c6f /misc/spmpp.pl | |
parent | f1564780c5a410c3093d4abfc8d2f9f1683f1dcc (diff) | |
download | markup-validator-72892aa4792bfe9c4268579a674e79e91ed43fc9.zip markup-validator-72892aa4792bfe9c4268579a674e79e91ed43fc9.tar.gz markup-validator-72892aa4792bfe9c4268579a674e79e91ed43fc9.tar.bz2 |
Fix "Unconventional here-target" perltidy warnings.
Diffstat (limited to 'misc/spmpp.pl')
-rwxr-xr-x | misc/spmpp.pl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/misc/spmpp.pl b/misc/spmpp.pl index ff364fc..b988b99 100755 --- a/misc/spmpp.pl +++ b/misc/spmpp.pl @@ -4,7 +4,7 @@ # for use in the Validator, from an OpenSP ParserMessages.rc. # (spmpp = "SP Message Pre-Processor") # -# $Id: spmpp.pl,v 1.3 2009-11-23 22:15:18 ville Exp $ +# $Id: spmpp.pl,v 1.4 2009-11-23 22:24:15 ville Exp $ # # @@ -34,12 +34,12 @@ while (<FH>) { } close FH; -print <<".EOF."; +print <<EOF; # # Automatically Generated by $0 # -.EOF. +EOF # # For each message, spit out a Config::General config file snippet. @@ -53,7 +53,7 @@ print <<".EOF."; # the last digit of the "muid" is replaced at runtime). # for (@msg) { - print <<"_.EOF._"; + print <<EOF; <msg $_->[0]> original = $_->[1] verbose <<.EOF. @@ -69,7 +69,7 @@ for (@msg) { </div> .EOF. </msg> -_.EOF._ +EOF } exit; |