>From aab882a3a6f4acf99b7fba6ea9f9f072ed2898ea Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Thu, 30 May 2013 11:45:59 +0100 Subject: [PATCH] podwrapper: Set Text::Wrap::huge property to "overflow". This stops long URLs from being broken in the text output mode. See: https://www.redhat.com/archives/libguestfs/2013-May/thread.html#00088 --- podwrapper.pl.in | 3 +++ 1 file changed, 3 insertions(+) diff --git a/podwrapper.pl.in b/podwrapper.pl.in index bbc0b7c..af21ef0 100755 --- a/podwrapper.pl.in +++ b/podwrapper.pl.in @@ -28,6 +28,9 @@ use Pod::Simple::Text; use Pod::Simple::XHTML; use File::Basename; +# https://www.redhat.com/archives/libguestfs/2013-May/thread.html#00088 +eval { $Text::Wrap::huge = "overflow" }; + =encoding utf8 =head1 NAME -- 1.8.2.1