From: Pádraig Brady Date: Thu, 1 Jan 2015 18:05:10 +0000 (+0000) Subject: doc: fix man page formatting for split CHUNKS options X-Git-Tag: v8.24~156 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=272aa7cad6c1cf940e17b29c46ee9ff363cb9664;p=thirdparty%2Fcoreutils.git doc: fix man page formatting for split CHUNKS options * src/split.c (usage): Indent the info on CHUNKS so that help2man can match it and align appropriately in its own section. Fixes http://bugs.gnu.org/19228 --- diff --git a/src/split.c b/src/split.c index d41c8359e3..ef672f4fdf 100644 --- a/src/split.c +++ b/src/split.c @@ -234,12 +234,12 @@ is -, read standard input.\n\ emit_size_note (); fputs (_("\n\ CHUNKS may be:\n\ -N split into N files based on size of input\n\ -K/N output Kth of N to stdout\n\ -l/N split into N files without splitting lines\n\ -l/K/N output Kth of N to stdout without splitting lines\n\ -r/N like 'l' but use round robin distribution\n\ -r/K/N likewise but only output Kth of N to stdout\n\ + N split into N files based on size of input\n\ + K/N output Kth of N to stdout\n\ + l/N split into N files without splitting lines\n\ + l/K/N output Kth of N to stdout without splitting lines\n\ + r/N like 'l' but use round robin distribution\n\ + r/K/N likewise but only output Kth of N to stdout\n\ "), stdout); emit_ancillary_info (PROGRAM_NAME); }