From: Eric Wong Date: Sat, 9 Jan 2016 09:45:21 +0000 (+0000) Subject: hval: new should not strip leading spaces X-Git-Tag: v1.0.0~742 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=b1ea344564ed1b1cd48a4530155e16abee0a9863;hp=0bcf715b7ef1e51bf05eeb46b066be8a762e13aa;p=public-inbox.git hval: new should not strip leading spaces We should be able to use this for ASCII art and paragraphs --- diff --git a/lib/PublicInbox/Hval.pm b/lib/PublicInbox/Hval.pm index 5a869358..d295f5ce 100644 --- a/lib/PublicInbox/Hval.pm +++ b/lib/PublicInbox/Hval.pm @@ -21,8 +21,7 @@ my $enc_ascii = find_encoding('us-ascii'); sub new { my ($class, $raw, $href) = @_; - # we never care about leading/trailing whitespace - $raw =~ s/\A\s*//; + # we never care about trailing whitespace $raw =~ s/\s*\z//; bless { raw => $raw,