diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2017-07-21 09:50:55 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-07-21 09:50:55 +0200 |
commit | 72089cf6b4a77214ec4fd21d5ee5bf56958781cb (patch) | |
tree | a5cd9d8f47e909834d3dbc44f895556e68bcf18f /archival/gzip.c | |
parent | 75d151e31d135ebab083307ded4e9b98970baa75 (diff) | |
download | busybox-w32-72089cf6b4a77214ec4fd21d5ee5bf56958781cb.tar.gz busybox-w32-72089cf6b4a77214ec4fd21d5ee5bf56958781cb.tar.bz2 busybox-w32-72089cf6b4a77214ec4fd21d5ee5bf56958781cb.zip |
config: deindent all help texts
Those two spaces after tab have no effect, and always a nuisance when editing.
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'archival/gzip.c')
-rw-r--r-- | archival/gzip.c | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/archival/gzip.c b/archival/gzip.c index a883a1fff..4cf34ac28 100644 --- a/archival/gzip.c +++ b/archival/gzip.c | |||
@@ -41,8 +41,8 @@ aa: 85.1% -- replaced with aa.gz | |||
41 | //config: bool "gzip (19 kb)" | 41 | //config: bool "gzip (19 kb)" |
42 | //config: default y | 42 | //config: default y |
43 | //config: help | 43 | //config: help |
44 | //config: gzip is used to compress files. | 44 | //config: gzip is used to compress files. |
45 | //config: It's probably the most widely used UNIX compression program. | 45 | //config: It's probably the most widely used UNIX compression program. |
46 | //config: | 46 | //config: |
47 | //config:config FEATURE_GZIP_LONG_OPTIONS | 47 | //config:config FEATURE_GZIP_LONG_OPTIONS |
48 | //config: bool "Enable long options" | 48 | //config: bool "Enable long options" |
@@ -55,30 +55,30 @@ aa: 85.1% -- replaced with aa.gz | |||
55 | //config: range 0 2 | 55 | //config: range 0 2 |
56 | //config: depends on GZIP | 56 | //config: depends on GZIP |
57 | //config: help | 57 | //config: help |
58 | //config: Enable big memory options for gzip. | 58 | //config: Enable big memory options for gzip. |
59 | //config: 0: small buffers, small hash-tables | 59 | //config: 0: small buffers, small hash-tables |
60 | //config: 1: larger buffers, larger hash-tables | 60 | //config: 1: larger buffers, larger hash-tables |
61 | //config: 2: larger buffers, largest hash-tables | 61 | //config: 2: larger buffers, largest hash-tables |
62 | //config: Larger models may give slightly better compression | 62 | //config: Larger models may give slightly better compression |
63 | //config: | 63 | //config: |
64 | //config:config FEATURE_GZIP_LEVELS | 64 | //config:config FEATURE_GZIP_LEVELS |
65 | //config: bool "Enable compression levels" | 65 | //config: bool "Enable compression levels" |
66 | //config: default n | 66 | //config: default n |
67 | //config: depends on GZIP | 67 | //config: depends on GZIP |
68 | //config: help | 68 | //config: help |
69 | //config: Enable support for compression levels 4-9. The default level | 69 | //config: Enable support for compression levels 4-9. The default level |
70 | //config: is 6. If levels 1-3 are specified, 4 is used. | 70 | //config: is 6. If levels 1-3 are specified, 4 is used. |
71 | //config: If this option is not selected, -N options are ignored and -9 | 71 | //config: If this option is not selected, -N options are ignored and -9 |
72 | //config: is used. | 72 | //config: is used. |
73 | //config: | 73 | //config: |
74 | //config:config FEATURE_GZIP_DECOMPRESS | 74 | //config:config FEATURE_GZIP_DECOMPRESS |
75 | //config: bool "Enable decompression" | 75 | //config: bool "Enable decompression" |
76 | //config: default y | 76 | //config: default y |
77 | //config: depends on GZIP || GUNZIP || ZCAT | 77 | //config: depends on GZIP || GUNZIP || ZCAT |
78 | //config: help | 78 | //config: help |
79 | //config: Enable -d (--decompress) and -t (--test) options for gzip. | 79 | //config: Enable -d (--decompress) and -t (--test) options for gzip. |
80 | //config: This will be automatically selected if gunzip or zcat is | 80 | //config: This will be automatically selected if gunzip or zcat is |
81 | //config: enabled. | 81 | //config: enabled. |
82 | 82 | ||
83 | //applet:IF_GZIP(APPLET(gzip, BB_DIR_BIN, BB_SUID_DROP)) | 83 | //applet:IF_GZIP(APPLET(gzip, BB_DIR_BIN, BB_SUID_DROP)) |
84 | //kbuild:lib-$(CONFIG_GZIP) += gzip.o | 84 | //kbuild:lib-$(CONFIG_GZIP) += gzip.o |