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 /editors/awk.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 'editors/awk.c')
-rw-r--r-- | editors/awk.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/editors/awk.c b/editors/awk.c index 9d859b820..aa927db1a 100644 --- a/editors/awk.c +++ b/editors/awk.c | |||
@@ -11,27 +11,27 @@ | |||
11 | //config: bool "awk (22 kb)" | 11 | //config: bool "awk (22 kb)" |
12 | //config: default y | 12 | //config: default y |
13 | //config: help | 13 | //config: help |
14 | //config: Awk is used as a pattern scanning and processing language. This is | 14 | //config: Awk is used as a pattern scanning and processing language. This is |
15 | //config: the BusyBox implementation of that programming language. | 15 | //config: the BusyBox implementation of that programming language. |
16 | //config: | 16 | //config: |
17 | //config:config FEATURE_AWK_LIBM | 17 | //config:config FEATURE_AWK_LIBM |
18 | //config: bool "Enable math functions (requires libm)" | 18 | //config: bool "Enable math functions (requires libm)" |
19 | //config: default y | 19 | //config: default y |
20 | //config: depends on AWK | 20 | //config: depends on AWK |
21 | //config: help | 21 | //config: help |
22 | //config: Enable math functions of the Awk programming language. | 22 | //config: Enable math functions of the Awk programming language. |
23 | //config: NOTE: This requires libm to be present for linking. | 23 | //config: NOTE: This requires libm to be present for linking. |
24 | //config: | 24 | //config: |
25 | //config:config FEATURE_AWK_GNU_EXTENSIONS | 25 | //config:config FEATURE_AWK_GNU_EXTENSIONS |
26 | //config: bool "Enable a few GNU extensions" | 26 | //config: bool "Enable a few GNU extensions" |
27 | //config: default y | 27 | //config: default y |
28 | //config: depends on AWK | 28 | //config: depends on AWK |
29 | //config: help | 29 | //config: help |
30 | //config: Enable a few features from gawk: | 30 | //config: Enable a few features from gawk: |
31 | //config: * command line option -e AWK_PROGRAM | 31 | //config: * command line option -e AWK_PROGRAM |
32 | //config: * simultaneous use of -f and -e on the command line. | 32 | //config: * simultaneous use of -f and -e on the command line. |
33 | //config: This enables the use of awk library files. | 33 | //config: This enables the use of awk library files. |
34 | //config: Ex: awk -f mylib.awk -e '{print myfunction($1);}' ... | 34 | //config: Example: awk -f mylib.awk -e '{print myfunction($1);}' ... |
35 | 35 | ||
36 | //applet:IF_AWK(APPLET_NOEXEC(awk, awk, BB_DIR_USR_BIN, BB_SUID_DROP, awk)) | 36 | //applet:IF_AWK(APPLET_NOEXEC(awk, awk, BB_DIR_USR_BIN, BB_SUID_DROP, awk)) |
37 | 37 | ||