diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-06-05 21:29:41 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-06-05 21:29:41 +0200 |
commit | 729ce473609fbe2aef656e6079d6b8a102962004 (patch) | |
tree | c1e3ee76d35bae50d9e82818fe177bd463eb1f19 /coreutils/tr.c | |
parent | da929a95aace0e79fbc621af2ab03c76d74d5fcb (diff) | |
download | busybox-w32-729ce473609fbe2aef656e6079d6b8a102962004.tar.gz busybox-w32-729ce473609fbe2aef656e6079d6b8a102962004.tar.bz2 busybox-w32-729ce473609fbe2aef656e6079d6b8a102962004.zip |
tr: add forgotten //config: prefixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils/tr.c')
-rw-r--r-- | coreutils/tr.c | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/coreutils/tr.c b/coreutils/tr.c index 12d07152b..25f503860 100644 --- a/coreutils/tr.c +++ b/coreutils/tr.c | |||
@@ -27,25 +27,25 @@ | |||
27 | //config: help | 27 | //config: help |
28 | //config: tr is used to squeeze, and/or delete characters from standard | 28 | //config: tr is used to squeeze, and/or delete characters from standard |
29 | //config: input, writing to standard output. | 29 | //config: input, writing to standard output. |
30 | 30 | //config: | |
31 | config FEATURE_TR_CLASSES | 31 | //config:config FEATURE_TR_CLASSES |
32 | bool "Enable character classes (such as [:upper:])" | 32 | //config: bool "Enable character classes (such as [:upper:])" |
33 | default n | 33 | //config: default n |
34 | depends on TR | 34 | //config: depends on TR |
35 | help | 35 | //config: help |
36 | Enable character classes, enabling commands such as: | 36 | //config: Enable character classes, enabling commands such as: |
37 | tr [:upper:] [:lower:] to convert input into lowercase. | 37 | //config: tr [:upper:] [:lower:] to convert input into lowercase. |
38 | 38 | //config: | |
39 | config FEATURE_TR_EQUIV | 39 | //config:config FEATURE_TR_EQUIV |
40 | bool "Enable equivalence classes" | 40 | //config: bool "Enable equivalence classes" |
41 | default n | 41 | //config: default n |
42 | depends on TR | 42 | //config: depends on TR |
43 | help | 43 | //config: help |
44 | Enable equivalence classes, which essentially add the enclosed | 44 | //config: Enable equivalence classes, which essentially add the enclosed |
45 | character to the current set. For instance, tr [=a=] xyz would | 45 | //config: character to the current set. For instance, tr [=a=] xyz would |
46 | replace all instances of 'a' with 'xyz'. This option is mainly | 46 | //config: replace all instances of 'a' with 'xyz'. This option is mainly |
47 | useful for cases when no other way of expressing a character | 47 | //config: useful for cases when no other way of expressing a character |
48 | is possible. | 48 | //config: is possible. |
49 | 49 | ||
50 | #include "libbb.h" | 50 | #include "libbb.h" |
51 | 51 | ||