about summary refs log tree commit homepage
path: root/lib
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2021-10-26 10:35:51 +0000
committerEric Wong <e@80x24.org>2021-10-26 17:43:52 +0000
commit584721cf9c98beabce9b779faafa1eabb5c24de6 (patch)
tree1d5c0978fc275bcc2f1b7712904e28ff844fa3e0 /lib
parent273090c96e3b5c214605decf5a755546116cc9bd (diff)
downloadpublic-inbox-584721cf9c98beabce9b779faafa1eabb5c24de6.tar.gz
This easily allows us to treat "git diff" output as header-less
"messages" for commands such as "lei p2q".
Diffstat (limited to 'lib')
-rw-r--r--lib/PublicInbox/Eml.pm7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/PublicInbox/Eml.pm b/lib/PublicInbox/Eml.pm
index 3c681ba5..485f637a 100644
--- a/lib/PublicInbox/Eml.pm
+++ b/lib/PublicInbox/Eml.pm
@@ -122,9 +122,10 @@ sub new {
                 my $hdr = substr($$ref, 0, $header_size_limit + 1);
                 hdr_truncate($hdr) if length($hdr) > $header_size_limit;
                 bless { hdr => \$hdr, crlf => $1 }, __PACKAGE__;
-        } else { # nothing useful
-                my $hdr = $$ref = '';
-                bless { hdr => \$hdr, crlf => "\n" }, __PACKAGE__;
+        } else { # just a body w/o header?
+                my $hdr = '';
+                my $eol = ($$ref =~ /(\r?\n)/) ? $1 : "\n";
+                bless { hdr => \$hdr, crlf => $eol, bdy => $ref }, __PACKAGE__;
         }
 }