aboutsummaryrefslogtreecommitdiff
path: root/coreutils/who.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2017-07-21 09:50:55 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2017-07-21 09:50:55 +0200
commit72089cf6b4a77214ec4fd21d5ee5bf56958781cb (patch)
treea5cd9d8f47e909834d3dbc44f895556e68bcf18f /coreutils/who.c
parent75d151e31d135ebab083307ded4e9b98970baa75 (diff)
downloadbusybox-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 'coreutils/who.c')
-rw-r--r--coreutils/who.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/coreutils/who.c b/coreutils/who.c
index 73167904f..91f99138c 100644
--- a/coreutils/who.c
+++ b/coreutils/who.c
@@ -17,26 +17,26 @@
17 *---------------------------------------------------------------------- 17 *----------------------------------------------------------------------
18 */ 18 */
19//config:config WHO 19//config:config WHO
20//config: bool "who (3.7 kb)" 20//config: bool "who (3.7 kb)"
21//config: default y 21//config: default y
22//config: depends on FEATURE_UTMP 22//config: depends on FEATURE_UTMP
23//config: help 23//config: help
24//config: who is used to show who is logged on. 24//config: Print users currently logged on.
25//config: 25//config:
26// procps-ng has this variation of "who": 26// procps-ng has this variation of "who":
27//config:config W 27//config:config W
28//config: bool "w (3.7 kb)" 28//config: bool "w (3.7 kb)"
29//config: default y 29//config: default y
30//config: depends on FEATURE_UTMP 30//config: depends on FEATURE_UTMP
31//config: help 31//config: help
32//config: w is used to show who is logged on. 32//config: Print users currently logged on.
33//config: 33//config:
34//config:config USERS 34//config:config USERS
35//config: bool "users (3.2 kb)" 35//config: bool "users (3.2 kb)"
36//config: default y 36//config: default y
37//config: depends on FEATURE_UTMP 37//config: depends on FEATURE_UTMP
38//config: help 38//config: help
39//config: Print users currently logged on. 39//config: Print users currently logged on.
40 40
41// APPLET_ODDNAME:name main location suid_type help 41// APPLET_ODDNAME:name main location suid_type help
42//applet:IF_USERS(APPLET_ODDNAME(users, who, BB_DIR_USR_BIN, BB_SUID_DROP, users)) 42//applet:IF_USERS(APPLET_ODDNAME(users, who, BB_DIR_USR_BIN, BB_SUID_DROP, users))