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 /shell/ash.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 'shell/ash.c')
-rw-r--r-- | shell/ash.c | 50 |
1 files changed, 25 insertions, 25 deletions
diff --git a/shell/ash.c b/shell/ash.c index 9d81f4ba8..b28731eb1 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -20,10 +20,10 @@ | |||
20 | //config: default y | 20 | //config: default y |
21 | //config: depends on !NOMMU | 21 | //config: depends on !NOMMU |
22 | //config: help | 22 | //config: help |
23 | //config: The most complete and most pedantically correct shell included with | 23 | //config: The most complete and most pedantically correct shell included with |
24 | //config: busybox. This shell is actually a derivative of the Debian 'dash' | 24 | //config: busybox. This shell is actually a derivative of the Debian 'dash' |
25 | //config: shell (by Herbert Xu), which was created by porting the 'ash' shell | 25 | //config: shell (by Herbert Xu), which was created by porting the 'ash' shell |
26 | //config: (written by Kenneth Almquist) from NetBSD. | 26 | //config: (written by Kenneth Almquist) from NetBSD. |
27 | //config: | 27 | //config: |
28 | //config:# ash options | 28 | //config:# ash options |
29 | //config:# note: Don't remove !NOMMU part in the next line; it would break | 29 | //config:# note: Don't remove !NOMMU part in the next line; it would break |
@@ -40,11 +40,11 @@ | |||
40 | //config: default y # Y is bigger, but because of uclibc glob() bug, let Y be default for now | 40 | //config: default y # Y is bigger, but because of uclibc glob() bug, let Y be default for now |
41 | //config: depends on ASH || SH_IS_ASH || BASH_IS_ASH | 41 | //config: depends on ASH || SH_IS_ASH || BASH_IS_ASH |
42 | //config: help | 42 | //config: help |
43 | //config: Do not use glob() function from libc, use internal implementation. | 43 | //config: Do not use glob() function from libc, use internal implementation. |
44 | //config: Use this if you are getting "glob.h: No such file or directory" | 44 | //config: Use this if you are getting "glob.h: No such file or directory" |
45 | //config: or similar build errors. | 45 | //config: or similar build errors. |
46 | //config: Note that as of now (2017-01), uclibc and musl glob() both have bugs | 46 | //config: Note that as of now (2017-01), uclibc and musl glob() both have bugs |
47 | //config: which would break ash if you select N here. | 47 | //config: which would break ash if you select N here. |
48 | //config: | 48 | //config: |
49 | //config:config ASH_BASH_COMPAT | 49 | //config:config ASH_BASH_COMPAT |
50 | //config: bool "bash-compatible extensions" | 50 | //config: bool "bash-compatible extensions" |
@@ -66,37 +66,37 @@ | |||
66 | //config: default y | 66 | //config: default y |
67 | //config: depends on ASH || SH_IS_ASH || BASH_IS_ASH | 67 | //config: depends on ASH || SH_IS_ASH || BASH_IS_ASH |
68 | //config: help | 68 | //config: help |
69 | //config: Enable pseudorandom generator and dynamic variable "$RANDOM". | 69 | //config: Enable pseudorandom generator and dynamic variable "$RANDOM". |
70 | //config: Each read of "$RANDOM" will generate a new pseudorandom value. | 70 | //config: Each read of "$RANDOM" will generate a new pseudorandom value. |
71 | //config: You can reset the generator by using a specified start value. | 71 | //config: You can reset the generator by using a specified start value. |
72 | //config: After "unset RANDOM" the generator will switch off and this | 72 | //config: After "unset RANDOM" the generator will switch off and this |
73 | //config: variable will no longer have special treatment. | 73 | //config: variable will no longer have special treatment. |
74 | //config: | 74 | //config: |
75 | //config:config ASH_EXPAND_PRMT | 75 | //config:config ASH_EXPAND_PRMT |
76 | //config: bool "Expand prompt string" | 76 | //config: bool "Expand prompt string" |
77 | //config: default y | 77 | //config: default y |
78 | //config: depends on ASH || SH_IS_ASH || BASH_IS_ASH | 78 | //config: depends on ASH || SH_IS_ASH || BASH_IS_ASH |
79 | //config: help | 79 | //config: help |
80 | //config: $PS# may contain volatile content, such as backquote commands. | 80 | //config: $PS# may contain volatile content, such as backquote commands. |
81 | //config: This option recreates the prompt string from the environment | 81 | //config: This option recreates the prompt string from the environment |
82 | //config: variable each time it is displayed. | 82 | //config: variable each time it is displayed. |
83 | //config: | 83 | //config: |
84 | //config:config ASH_IDLE_TIMEOUT | 84 | //config:config ASH_IDLE_TIMEOUT |
85 | //config: bool "Idle timeout variable $TMOUT" | 85 | //config: bool "Idle timeout variable $TMOUT" |
86 | //config: default y | 86 | //config: default y |
87 | //config: depends on ASH || SH_IS_ASH || BASH_IS_ASH | 87 | //config: depends on ASH || SH_IS_ASH || BASH_IS_ASH |
88 | //config: help | 88 | //config: help |
89 | //config: Enable bash-like auto-logout after $TMOUT seconds of idle time. | 89 | //config: Enable bash-like auto-logout after $TMOUT seconds of idle time. |
90 | //config: | 90 | //config: |
91 | //config:config ASH_MAIL | 91 | //config:config ASH_MAIL |
92 | //config: bool "Check for new mail in interactive shell" | 92 | //config: bool "Check for new mail in interactive shell" |
93 | //config: default y | 93 | //config: default y |
94 | //config: depends on ASH || SH_IS_ASH || BASH_IS_ASH | 94 | //config: depends on ASH || SH_IS_ASH || BASH_IS_ASH |
95 | //config: help | 95 | //config: help |
96 | //config: Enable "check for new mail" function: | 96 | //config: Enable "check for new mail" function: |
97 | //config: if set, $MAIL file and $MAILPATH list of files | 97 | //config: if set, $MAIL file and $MAILPATH list of files |
98 | //config: are checked for mtime changes, and "you have mail" | 98 | //config: are checked for mtime changes, and "you have mail" |
99 | //config: message is printed if change is detected. | 99 | //config: message is printed if change is detected. |
100 | //config: | 100 | //config: |
101 | //config:config ASH_ECHO | 101 | //config:config ASH_ECHO |
102 | //config: bool "echo builtin" | 102 | //config: bool "echo builtin" |
@@ -128,9 +128,9 @@ | |||
128 | //config: default y | 128 | //config: default y |
129 | //config: depends on ASH || SH_IS_ASH || BASH_IS_ASH | 129 | //config: depends on ASH || SH_IS_ASH || BASH_IS_ASH |
130 | //config: help | 130 | //config: help |
131 | //config: Enable support for the 'command' builtin, which allows | 131 | //config: Enable support for the 'command' builtin, which allows |
132 | //config: you to run the specified command or builtin, | 132 | //config: you to run the specified command or builtin, |
133 | //config: even when there is a function with the same name. | 133 | //config: even when there is a function with the same name. |
134 | //config: | 134 | //config: |
135 | //config:endif # ash options | 135 | //config:endif # ash options |
136 | 136 | ||