# HG changeset patch # User Matti Hamalainen # Date 1315918355 -10800 # Node ID 453f978f19e5ca9d9a723e59ce753bf6028cc2bd # Parent 5425dc41850580ebb1537270184bdc8af7dee218 urllog: Fix a think-o in urllog_convert_ent: multiple whitespaces were not condensed to just one because of incorrect variable use. diff -r 5425dc418505 -r 453f978f19e5 urllog.tcl --- a/urllog.tcl Tue Sep 13 15:51:15 2011 +0300 +++ b/urllog.tcl Tue Sep 13 15:52:35 2011 +0300 @@ -250,7 +250,7 @@ proc urllog_convert_ent {udata} { global urllog_html_ent regsub -all " " $udata " " utmp - regsub -all "\r" $udata " " utmp + regsub -all "\r" $utmp " " utmp regsub -all "\n" $utmp " " utmp regsub -all " *" $utmp " " utmp regsub -all "\t" $utmp "" utmp