]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
doc: clarify the operation of wc -L
authorAssaf Gordon <assafgordon@gmail.com>
Wed, 13 May 2015 01:46:29 +0000 (02:46 +0100)
committerPádraig Brady <P@draigBrady.com>
Wed, 13 May 2015 01:54:19 +0000 (02:54 +0100)
* src/wc.c (usage): State that it calculates display width.
* doc/coreutils.texi (wc invocation): Detail the distinct
items used to determine the display width.

doc/coreutils.texi
src/wc.c

index 51d96b466fe47a2533a4076ae369cd9dffa722d0..6a69b75cab44a780ab3eaec9688fe63dc3eea462 100644 (file)
@@ -3593,7 +3593,10 @@ Print only the newline counts.
 @itemx --max-line-length
 @opindex -L
 @opindex --max-line-length
-Print only the maximum line lengths.
+Print only the maximum display widths.
+Tabs are set at every 8th column.
+Display widths of wide characters are considered.
+Non-printable characters are given 0 width.
 
 @macro filesZeroFromOption{cmd,withTotalOption,subListOutput}
 @item --files0-from=@var{file}
index ae7ae952dc7348fccd551d87b7ab2db5779069ed..eb7b5b69a0c4260661a8adadb34792fc79ec0dcf 100644 (file)
--- a/src/wc.c
+++ b/src/wc.c
@@ -134,7 +134,7 @@ the following order: newline, word, character, byte, maximum line length.\n\
       --files0-from=F    read input from the files specified by\n\
                            NUL-terminated names in file F;\n\
                            If F is - then read names from standard input\n\
-  -L, --max-line-length  print the length of the longest line\n\
+  -L, --max-line-length  print the maximum display width\n\
   -w, --words            print the word counts\n\
 "), stdout);
       fputs (HELP_OPTION_DESCRIPTION, stdout);