aboutsummaryrefslogtreecommitdiffstats
path: root/src/true.c
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2009-08-22 18:56:06 +0200
committerJim Meyering <meyering@redhat.com>2009-08-25 09:21:00 +0200
commit5e778f7c8d1ecf3d8f11385db013af2ba026e2a5 (patch)
treee460d471f37f0dce1ba06f60f88114d1a65326c4 /src/true.c
parentcp: ignore obscure failure to preserve symlink time stamps, (diff)
downloadcoreutils-5e778f7c8d1ecf3d8f11385db013af2ba026e2a5.tar.gz
coreutils-5e778f7c8d1ecf3d8f11385db013af2ba026e2a5.zip
global: convert indentation-TABs to spaces
Transformed via this shell code: t=$'\t' git ls-files \ | grep -vE '(^|/)((GNU)?[Mm]akefile|ChangeLog)|\.(am|mk)$' \ | grep -vE 'tests/pr/|help2man' \ | xargs grep -lE "^ *$t" \ | xargs perl -MText::Tabs -ni -le \ '$m=/^( *\t[ \t]*)(.*)/; print $m ? expand($1) . $2 : $_'
Diffstat (limited to 'src/true.c')
-rw-r--r--src/true.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/true.c b/src/true.c
index 46b41b988..66d1e0111 100644
--- a/src/true.c
+++ b/src/true.c
@@ -39,11 +39,11 @@ usage (int status)
Usage: %s [ignored command line arguments]\n\
or: %s OPTION\n\
"),
- program_name, program_name);
+ program_name, program_name);
printf ("%s\n\n",
- _(EXIT_STATUS == EXIT_SUCCESS
- ? N_("Exit with a status code indicating success.")
- : N_("Exit with a status code indicating failure.")));
+ _(EXIT_STATUS == EXIT_SUCCESS
+ ? N_("Exit with a status code indicating success.")
+ : N_("Exit with a status code indicating failure.")));
fputs (HELP_OPTION_DESCRIPTION, stdout);
fputs (VERSION_OPTION_DESCRIPTION, stdout);
printf (USAGE_BUILTIN_WARNING, PROGRAM_NAME);
@@ -67,11 +67,11 @@ main (int argc, char **argv)
if (argc == 2)
{
if (STREQ (argv[1], "--help"))
- usage (EXIT_STATUS);
+ usage (EXIT_STATUS);
if (STREQ (argv[1], "--version"))
- version_etc (stdout, PROGRAM_NAME, PACKAGE_NAME, Version, AUTHORS,
- (char *) NULL);
+ version_etc (stdout, PROGRAM_NAME, PACKAGE_NAME, Version, AUTHORS,
+ (char *) NULL);
}
exit (EXIT_STATUS);