diff options
author | Denys Vlasenko | 2017-07-21 09:50:55 +0200 |
---|---|---|
committer | Denys Vlasenko | 2017-07-21 09:50:55 +0200 |
commit | 72089cf6b4a77214ec4fd21d5ee5bf56958781cb (patch) | |
tree | a5cd9d8f47e909834d3dbc44f895556e68bcf18f /editors/awk.c | |
parent | 75d151e31d135ebab083307ded4e9b98970baa75 (diff) | |
download | busybox-72089cf6b4a77214ec4fd21d5ee5bf56958781cb.zip busybox-72089cf6b4a77214ec4fd21d5ee5bf56958781cb.tar.gz |
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 9d859b8..aa927db 100644 --- a/editors/awk.c +++ b/editors/awk.c @@ -11,27 +11,27 @@ //config: bool "awk (22 kb)" //config: default y //config: help -//config: Awk is used as a pattern scanning and processing language. This is -//config: the BusyBox implementation of that programming language. +//config: Awk is used as a pattern scanning and processing language. This is +//config: the BusyBox implementation of that programming language. //config: //config:config FEATURE_AWK_LIBM //config: bool "Enable math functions (requires libm)" //config: default y //config: depends on AWK //config: help -//config: Enable math functions of the Awk programming language. -//config: NOTE: This requires libm to be present for linking. +//config: Enable math functions of the Awk programming language. +//config: NOTE: This requires libm to be present for linking. //config: //config:config FEATURE_AWK_GNU_EXTENSIONS //config: bool "Enable a few GNU extensions" //config: default y //config: depends on AWK //config: help -//config: Enable a few features from gawk: -//config: * command line option -e AWK_PROGRAM -//config: * simultaneous use of -f and -e on the command line. -//config: This enables the use of awk library files. -//config: Ex: awk -f mylib.awk -e '{print myfunction($1);}' ... +//config: Enable a few features from gawk: +//config: * command line option -e AWK_PROGRAM +//config: * simultaneous use of -f and -e on the command line. +//config: This enables the use of awk library files. +//config: Example: awk -f mylib.awk -e '{print myfunction($1);}' ... //applet:IF_AWK(APPLET_NOEXEC(awk, awk, BB_DIR_USR_BIN, BB_SUID_DROP, awk)) |