Commit Diff


commit - 1b07ee395564813209d1607b6ea62786174167d6
commit + 6797be468ce4469dac459cca3659886abf2f1b52
blob - bc4deeaaa5544f8364639e5c8d9fdcff2f59d95d
blob + 2782b0ad62f71b6b03651c9d1a6c266825d4f0d3
--- mexp
+++ mexp
@@ -50,14 +50,14 @@ while (<>) {
 
 	my @hdrs;
 	while (<$mshow>) {
-		chomp;
-		say $text $_;
 		last if /^$/;
 
 		# drop the (1 day ago) string
 		s/\(.*\)// if /^Date:/;
+		print $text $_;
 		push @hdrs, san($_);
 	}
+	say $text "";
 
 	thread_header $fh, $tid, $mid, \@hdrs;