diff options
| author | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-05-08 18:17:19 +0100 | 
|---|---|---|
| committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-06-09 20:57:41 +0100 | 
| commit | 9d6e36a7525c97f3d5d081407e39688750e5169e (patch) | |
| tree | 842a6ad522b0367b85d92d9c0e7d419d915c298f | |
| parent | Fix unescaped property value (diff) | |
| download | gentoobrowse-api-9d6e36a7525c97f3d5d081407e39688750e5169e.tar.bz2 gentoobrowse-api-9d6e36a7525c97f3d5d081407e39688750e5169e.tar.xz gentoobrowse-api-9d6e36a7525c97f3d5d081407e39688750e5169e.zip | |
Adjust wrap of plain text content to recommended width
| -rw-r--r-- | gentoobrowse-api/service/xsltStreamSerializer.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/gentoobrowse-api/service/xsltStreamSerializer.cpp b/gentoobrowse-api/service/xsltStreamSerializer.cpp index ff73c2e..abe652d 100644 --- a/gentoobrowse-api/service/xsltStreamSerializer.cpp +++ b/gentoobrowse-api/service/xsltStreamSerializer.cpp @@ -59,7 +59,7 @@ namespace Gentoo {  		callLynx.push_back("/usr/bin/lynx");  		callLynx.push_back("-dump");  		callLynx.push_back("-stdin"); -		std::string widthArg = "-width=105"; +		std::string widthArg = "-width=78";  		callLynx.push_back(widthArg);  		AdHoc::System::ProcessPipes fds(callLynx, true, true, false);  		FILE * lynxIn = fdopen(fds.fdIn(), "w"); | 
