diff options
author | seonah moon <seonah1.moon@samsung.com> | 2016-04-06 23:59:58 -0700 |
---|---|---|
committer | seonah moon <seonah1.moon@samsung.com> | 2016-04-06 23:59:58 -0700 |
commit | 7a9f915fa6be8c8955ff2c59169538a4d0349080 (patch) | |
tree | b8564c993bce1fd1d285780c32ec554b2785096f /src/mkhelp.pl | |
parent | 2bc9d6bb53df44a0c5174767de734620c2cdfd9e (diff) | |
download | curl-7a9f915fa6be8c8955ff2c59169538a4d0349080.tar.gz curl-7a9f915fa6be8c8955ff2c59169538a4d0349080.tar.bz2 curl-7a9f915fa6be8c8955ff2c59169538a4d0349080.zip |
Revert "Update to 7.44.0"
This reverts commit 2bc9d6bb53df44a0c5174767de734620c2cdfd9e.
Change-Id: I831001a99b6ad80dc062c84b3877208e1b40b80a
Diffstat (limited to 'src/mkhelp.pl')
-rw-r--r-- | src/mkhelp.pl | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/mkhelp.pl b/src/mkhelp.pl index 088a09a06..7ed86f7cd 100644 --- a/src/mkhelp.pl +++ b/src/mkhelp.pl @@ -54,9 +54,6 @@ while (<STDIN>) { # this should be removed: $line =~ s/(.|_)//g; - # remove trailing CR from line. msysgit checks out files as line+CRLF - $line =~ s/\r$//; - if($line =~ /^([ \t]*\n|curl)/i) { # cut off headers and empty lines $wline++; # count number of cut off lines @@ -93,12 +90,7 @@ open(READ, "<$README") || die "couldn't read the README infile $README"; while(<READ>) { - my $line = $_; - - # remove trailing CR from line. msysgit checks out files as line+CRLF - $line =~ s/\r$//; - - push @out, $line; + push @out, $_; } close(READ); |