summaryrefslogtreecommitdiff
path: root/coreutils/Config.in
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2006-05-31 19:36:04 +0000
committerRob Landley <rob@landley.net>2006-05-31 19:36:04 +0000
commit8abbee474c4eff45bdc2cacb59047f466e1d6ae1 (patch)
tree35f25489cf48f7a80e3545472a84d534ef9915a3 /coreutils/Config.in
parent9a5686b605a4dfe2f24660940e309bb444fe5f3f (diff)
downloadbusybox-w32-8abbee474c4eff45bdc2cacb59047f466e1d6ae1.tar.gz
busybox-w32-8abbee474c4eff45bdc2cacb59047f466e1d6ae1.tar.bz2
busybox-w32-8abbee474c4eff45bdc2cacb59047f466e1d6ae1.zip
Add catv (separate applet instead of cat -v). Also cleanup cat.c comments,
the following of which (from cat.c) belongs in svn history instead of the source code: /* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org) * * This is a new implementation of 'cat' which aims to be SUSv3 compliant. * * Changes from the previous implementation include: * 1) Multiple '-' args are accepted as required by SUSv3. The previous * implementation would close stdin and segfault on a subsequent '-'. * 2) The '-u' options is required by SUSv3. Note that the specified * behavior for '-u' is done by default, so all we need do is accept * the option. */
Diffstat (limited to 'coreutils/Config.in')
-rw-r--r--coreutils/Config.in6
1 files changed, 6 insertions, 0 deletions
diff --git a/coreutils/Config.in b/coreutils/Config.in
index 818854cb1..96f4d7a6e 100644
--- a/coreutils/Config.in
+++ b/coreutils/Config.in
@@ -25,6 +25,12 @@ config CONFIG_CAT
25 help 25 help
26 cat is used to concatenate files and print them to the standard 26 cat is used to concatenate files and print them to the standard
27 output. Enable this option if you wish to enable the 'cat' utility. 27 output. Enable this option if you wish to enable the 'cat' utility.
28config CONFIG_CATV
29 bool "catv"
30 default n
31 help
32 Display nonprinting characters as escape sequences (like some
33 implementations' cat -v option).
28 34
29config CONFIG_FEATURE_CAT_ESCAPE 35config CONFIG_FEATURE_CAT_ESCAPE
30 bool "support -vetET" 36 bool "support -vetET"