Hi, we have gitweb running on Linux box. Some files have Windows line ending (CRLF) end we do not use core.autcrlf translation. gitweb show the last \r in the end of each line, which is annoying. I have creates a simple patch to avoid this. It adds just one line. I am not sure if the regexp should contain 'g' switch in the end. Also, not sure if there shoul be some config option to switch on/off this? Cheers Ondra --- gitweb/gitweb.perl | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index abb5a79..92175bc 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -1500,6 +1500,7 @@ sub esc_html { if ($opts{'-nbsp'}) { $str =~ s/ / /g; } + $str =~ s/\r$//; $str =~ s|([[:cntrl:]])|(($1 ne "\t") ? quot_cec($1) : $1)|eg; return $str; } -- 1.7.8.4 -- View this message in context: http://git.661346.n2.nabble.com/gitweb-showing-slash-r-at-the-end-of-line-tp7229895p7229895.html Sent from the git mailing list archive at Nabble.com. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html