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 /coreutils/ls.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 'coreutils/ls.c')
-rw-r--r-- | coreutils/ls.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/coreutils/ls.c b/coreutils/ls.c index cf5228745..0fe0345b3 100644 --- a/coreutils/ls.c +++ b/coreutils/ls.c | |||
@@ -31,7 +31,7 @@ | |||
31 | //config: bool "ls (14 kb)" | 31 | //config: bool "ls (14 kb)" |
32 | //config: default y | 32 | //config: default y |
33 | //config: help | 33 | //config: help |
34 | //config: ls is used to list the contents of directories. | 34 | //config: ls is used to list the contents of directories. |
35 | //config: | 35 | //config: |
36 | //config:config FEATURE_LS_FILETYPES | 36 | //config:config FEATURE_LS_FILETYPES |
37 | //config: bool "Enable filetyping options (-p and -F)" | 37 | //config: bool "Enable filetyping options (-p and -F)" |
@@ -58,39 +58,39 @@ | |||
58 | //config: default y | 58 | //config: default y |
59 | //config: depends on LS | 59 | //config: depends on LS |
60 | //config: help | 60 | //config: help |
61 | //config: Allow ls to sort file names alphabetically. | 61 | //config: Allow ls to sort file names alphabetically. |
62 | //config: | 62 | //config: |
63 | //config:config FEATURE_LS_TIMESTAMPS | 63 | //config:config FEATURE_LS_TIMESTAMPS |
64 | //config: bool "Show file timestamps" | 64 | //config: bool "Show file timestamps" |
65 | //config: default y | 65 | //config: default y |
66 | //config: depends on LS | 66 | //config: depends on LS |
67 | //config: help | 67 | //config: help |
68 | //config: Allow ls to display timestamps for files. | 68 | //config: Allow ls to display timestamps for files. |
69 | //config: | 69 | //config: |
70 | //config:config FEATURE_LS_USERNAME | 70 | //config:config FEATURE_LS_USERNAME |
71 | //config: bool "Show username/groupnames" | 71 | //config: bool "Show username/groupnames" |
72 | //config: default y | 72 | //config: default y |
73 | //config: depends on LS | 73 | //config: depends on LS |
74 | //config: help | 74 | //config: help |
75 | //config: Allow ls to display username/groupname for files. | 75 | //config: Allow ls to display username/groupname for files. |
76 | //config: | 76 | //config: |
77 | //config:config FEATURE_LS_COLOR | 77 | //config:config FEATURE_LS_COLOR |
78 | //config: bool "Allow use of color to identify file types" | 78 | //config: bool "Allow use of color to identify file types" |
79 | //config: default y | 79 | //config: default y |
80 | //config: depends on LS && LONG_OPTS | 80 | //config: depends on LS && LONG_OPTS |
81 | //config: help | 81 | //config: help |
82 | //config: This enables the --color option to ls. | 82 | //config: This enables the --color option to ls. |
83 | //config: | 83 | //config: |
84 | //config:config FEATURE_LS_COLOR_IS_DEFAULT | 84 | //config:config FEATURE_LS_COLOR_IS_DEFAULT |
85 | //config: bool "Produce colored ls output by default" | 85 | //config: bool "Produce colored ls output by default" |
86 | //config: default y | 86 | //config: default y |
87 | //config: depends on FEATURE_LS_COLOR | 87 | //config: depends on FEATURE_LS_COLOR |
88 | //config: help | 88 | //config: help |
89 | //config: Saying yes here will turn coloring on by default, | 89 | //config: Saying yes here will turn coloring on by default, |
90 | //config: even if no "--color" option is given to the ls command. | 90 | //config: even if no "--color" option is given to the ls command. |
91 | //config: This is not recommended, since the colors are not | 91 | //config: This is not recommended, since the colors are not |
92 | //config: configurable, and the output may not be legible on | 92 | //config: configurable, and the output may not be legible on |
93 | //config: many output screens. | 93 | //config: many output screens. |
94 | 94 | ||
95 | //applet:IF_LS(APPLET_NOEXEC(ls, ls, BB_DIR_BIN, BB_SUID_DROP, ls)) | 95 | //applet:IF_LS(APPLET_NOEXEC(ls, ls, BB_DIR_BIN, BB_SUID_DROP, ls)) |
96 | 96 | ||