Commit Diff
Commit:
6e04f5f45bb33affc6bd631ee440f5ebbc7f8a58
Date:
Sat Aug 27 22:21:11 2022
UTC
Message:
drop trailing space on Date header values
--- mexp
+++ mexp
@@ -53,7 +53,7 @@ while (<>) {
last if /^$/;
# drop the (1 day ago) string
- s/\(.*\)// if /^Date:/;
+ s/ \(.*\)// if /^Date:/;
print $text $_;
push @hdrs, san($_);
}
Omar Polo