From af8434f5f729a541cf8c50dfcb7d96a413facd2b Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Mon, 24 Feb 2020 07:33:26 +0000 Subject: hval: ascii_html: drop CRLF => LF conversion Instead, we add CRLF conversion to the only remaining place which needs it, ViewVCS. This save many redundant ops in in many places. The only other place where this mattered was in View::add_text_body, but we already started doing CRLF conversions when we added diff parsing and link generation for ViewVCS. Otherwise, all other places we used this was for header viewing and Email::MIME doesn't preserve CRLF in headers. --- lib/PublicInbox/Hval.pm | 1 - 1 file changed, 1 deletion(-) (limited to 'lib/PublicInbox/Hval.pm') diff --git a/lib/PublicInbox/Hval.pm b/lib/PublicInbox/Hval.pm index 5f7ab513..79005d21 100644 --- a/lib/PublicInbox/Hval.pm +++ b/lib/PublicInbox/Hval.pm @@ -55,7 +55,6 @@ sub src_escape ($) { sub ascii_html { my ($s) = @_; - $s =~ s/\r\n/\n/sg; # fixup bad line endings $s =~ s/([<>&'"\x7f\x00-\x1f])/$xhtml_map{$1}/sge; $enc_ascii->encode($s, Encode::HTMLCREF); } -- cgit v1.2.3-24-ge0c7