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 /procps/top.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 'procps/top.c')
-rw-r--r-- | procps/top.c | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/procps/top.c b/procps/top.c index f43cd9c..015d1ab 100644 --- a/procps/top.c +++ b/procps/top.c @@ -53,63 +53,63 @@ //config: bool "top (17 kb)" //config: default y //config: help -//config: The top program provides a dynamic real-time view of a running -//config: system. +//config: The top program provides a dynamic real-time view of a running +//config: system. //config: //config:config FEATURE_TOP_INTERACTIVE //config: bool "Accept keyboard commands" //config: default y //config: depends on TOP //config: help -//config: Without this, top will only refresh display every 5 seconds. -//config: No keyboard commands will work, only ^C to terminate. +//config: Without this, top will only refresh display every 5 seconds. +//config: No keyboard commands will work, only ^C to terminate. //config: //config:config FEATURE_TOP_CPU_USAGE_PERCENTAGE //config: bool "Show CPU per-process usage percentage" //config: default y //config: depends on TOP //config: help -//config: Make top display CPU usage for each process. -//config: This adds about 2k. +//config: Make top display CPU usage for each process. +//config: This adds about 2k. //config: //config:config FEATURE_TOP_CPU_GLOBAL_PERCENTS //config: bool "Show CPU global usage percentage" //config: default y //config: depends on FEATURE_TOP_CPU_USAGE_PERCENTAGE //config: help -//config: Makes top display "CPU: NN% usr NN% sys..." line. -//config: This adds about 0.5k. +//config: Makes top display "CPU: NN% usr NN% sys..." line. +//config: This adds about 0.5k. //config: //config:config FEATURE_TOP_SMP_CPU //config: bool "SMP CPU usage display ('c' key)" //config: default y //config: depends on FEATURE_TOP_CPU_GLOBAL_PERCENTS //config: help -//config: Allow 'c' key to switch between individual/cumulative CPU stats -//config: This adds about 0.5k. +//config: Allow 'c' key to switch between individual/cumulative CPU stats +//config: This adds about 0.5k. //config: //config:config FEATURE_TOP_DECIMALS //config: bool "Show 1/10th of a percent in CPU/mem statistics" //config: default y //config: depends on FEATURE_TOP_CPU_USAGE_PERCENTAGE //config: help -//config: Show 1/10th of a percent in CPU/mem statistics. -//config: This adds about 0.3k. +//config: Show 1/10th of a percent in CPU/mem statistics. +//config: This adds about 0.3k. //config: //config:config FEATURE_TOP_SMP_PROCESS //config: bool "Show CPU process runs on ('j' field)" //config: default y //config: depends on TOP //config: help -//config: Show CPU where process was last found running on. -//config: This is the 'j' field. +//config: Show CPU where process was last found running on. +//config: This is the 'j' field. //config: //config:config FEATURE_TOPMEM //config: bool "Topmem command ('s' key)" //config: default y //config: depends on TOP //config: help -//config: Enable 's' in top (gives lots of memory info). +//config: Enable 's' in top (gives lots of memory info). //applet:IF_TOP(APPLET(top, BB_DIR_USR_BIN, BB_SUID_DROP)) |