aboutsummaryrefslogtreecommitdiff
path: root/coreutils/expand.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2011-06-05 03:58:28 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2011-06-05 03:58:28 +0200
commit66426760beef7e87c4735f433d123daf911b5b4a (patch)
tree7aa341ba4d1b01b69feeb878d1b78f974207abb0 /coreutils/expand.c
parent9f7780250ce4bbee9c0a8f1044875e303479e196 (diff)
downloadbusybox-w32-66426760beef7e87c4735f433d123daf911b5b4a.tar.gz
busybox-w32-66426760beef7e87c4735f433d123daf911b5b4a.tar.bz2
busybox-w32-66426760beef7e87c4735f433d123daf911b5b4a.zip
*: remove "Options:" string from help texts
function old new delta packed_usage 28706 28623 -83 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils/expand.c')
-rw-r--r--coreutils/expand.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/coreutils/expand.c b/coreutils/expand.c
index 73ab0ece3..25bbffc66 100644
--- a/coreutils/expand.c
+++ b/coreutils/expand.c
@@ -25,7 +25,6 @@
25//usage: "[-i] [-t N] [FILE]..." 25//usage: "[-i] [-t N] [FILE]..."
26//usage:#define expand_full_usage "\n\n" 26//usage:#define expand_full_usage "\n\n"
27//usage: "Convert tabs to spaces, writing to stdout\n" 27//usage: "Convert tabs to spaces, writing to stdout\n"
28//usage: "\nOptions:"
29//usage: IF_FEATURE_EXPAND_LONG_OPTIONS( 28//usage: IF_FEATURE_EXPAND_LONG_OPTIONS(
30//usage: "\n -i,--initial Don't convert tabs after non blanks" 29//usage: "\n -i,--initial Don't convert tabs after non blanks"
31//usage: "\n -t,--tabs=N Tabstops every N chars" 30//usage: "\n -t,--tabs=N Tabstops every N chars"
@@ -39,7 +38,6 @@
39//usage: "[-fa][-t N] [FILE]..." 38//usage: "[-fa][-t N] [FILE]..."
40//usage:#define unexpand_full_usage "\n\n" 39//usage:#define unexpand_full_usage "\n\n"
41//usage: "Convert spaces to tabs, writing to stdout\n" 40//usage: "Convert spaces to tabs, writing to stdout\n"
42//usage: "\nOptions:"
43//usage: IF_FEATURE_UNEXPAND_LONG_OPTIONS( 41//usage: IF_FEATURE_UNEXPAND_LONG_OPTIONS(
44//usage: "\n -a,--all Convert all blanks" 42//usage: "\n -a,--all Convert all blanks"
45//usage: "\n -f,--first-only Convert only leading blanks" 43//usage: "\n -f,--first-only Convert only leading blanks"