diff options
author | Steve Hay <steve.m.hay@googlemail.com> | 2012-06-07 14:24:42 +0100 |
---|---|---|
committer | Steve Hay <steve.m.hay@googlemail.com> | 2012-06-07 14:24:42 +0100 |
commit | e654efc25137667e687e787a95f6c53aa0ed69e1 (patch) | |
tree | 2d239286d496bef30127eb59fd24e48aa28a3f73 /win32/config_h.PL | |
parent | 6f0620367164e0036979de54404eec485a5bbb45 (diff) | |
download | perl-e654efc25137667e687e787a95f6c53aa0ed69e1.tar.gz |
Remove some commented-out lines from win32/config_h.PL
Diffstat (limited to 'win32/config_h.PL')
-rw-r--r-- | win32/config_h.PL | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/win32/config_h.PL b/win32/config_h.PL index 3905e33a10..7ce39d5e0e 100644 --- a/win32/config_h.PL +++ b/win32/config_h.PL @@ -51,7 +51,6 @@ eval $str; die "$str:$@" if $@; open(H,">$file.new") || die "Cannot open $file.new:$!"; -#binmode H; # no CRs (which cause a spurious rebuild) while (<SH>) { last if /^$term$/o; @@ -86,7 +85,6 @@ if (compare("$file.new",$file)) chmod(0666,$file); unlink($file); rename("$file.new",$file); - #chmod(0444,$file); exit(1); } else |