Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2017-07-21 10:50:55 +0300
committerDenys Vlasenko <vda.linux@googlemail.com>2017-07-21 10:50:55 +0300
commit72089cf6b4a77214ec4fd21d5ee5bf56958781cb (patch)
treea5cd9d8f47e909834d3dbc44f895556e68bcf18f /coreutils/sleep.c
parent75d151e31d135ebab083307ded4e9b98970baa75 (diff)
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/sleep.c')
-rw-r--r--coreutils/sleep.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/coreutils/sleep.c b/coreutils/sleep.c
index 6b3aa1ffa..9b9581ca9 100644
--- a/coreutils/sleep.c
+++ b/coreutils/sleep.c
@@ -16,29 +16,29 @@
//config: bool "sleep (1.7 kb)"
//config: default y
//config: help
-//config: sleep is used to pause for a specified number of seconds.
-//config: It comes in 3 versions:
-//config: - small: takes one integer parameter
-//config: - fancy: takes multiple integer arguments with suffixes:
-//config: sleep 1d 2h 3m 15s
-//config: - fancy with fractional numbers:
-//config: sleep 2.3s 4.5h sleeps for 16202.3 seconds
-//config: Last one is "the most compatible" with coreutils sleep,
-//config: but it adds around 1k of code.
+//config: sleep is used to pause for a specified number of seconds.
+//config: It comes in 3 versions:
+//config: - small: takes one integer parameter
+//config: - fancy: takes multiple integer arguments with suffixes:
+//config: sleep 1d 2h 3m 15s
+//config: - fancy with fractional numbers:
+//config: sleep 2.3s 4.5h sleeps for 16202.3 seconds
+//config: Last one is "the most compatible" with coreutils sleep,
+//config: but it adds around 1k of code.
//config:
//config:config FEATURE_FANCY_SLEEP
//config: bool "Enable multiple arguments and s/m/h/d suffixes"
//config: default y
//config: depends on SLEEP
//config: help
-//config: Allow sleep to pause for specified minutes, hours, and days.
+//config: Allow sleep to pause for specified minutes, hours, and days.
//config:
//config:config FEATURE_FLOAT_SLEEP
//config: bool "Enable fractional arguments"
//config: default y
//config: depends on FEATURE_FANCY_SLEEP
//config: help
-//config: Allow for fractional numeric parameters.
+//config: Allow for fractional numeric parameters.
/* Do not make this applet NOFORK. It breaks ^C-ing of pauses in shells */
//applet:IF_SLEEP(APPLET(sleep, BB_DIR_BIN, BB_SUID_DROP))