summaryrefslogtreecommitdiff
path: root/src/rm.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/rm.c
parent2bc0f3caaafeb240cdcfd050b7ad1fe0ad14addf (diff)
downloadcoreutils-5e778f7c8d1ecf3d8f11385db013af2ba026e2a5.tar.gz
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/rm.c')
-rw-r--r--src/rm.c218
1 files changed, 109 insertions, 109 deletions
diff --git a/src/rm.c b/src/rm.c
index bb2bc5507..5995e46fd 100644
--- a/src/rm.c
+++ b/src/rm.c
@@ -137,14 +137,14 @@ diagnose_leading_hyphen (int argc, char **argv)
struct stat st;
if (arg[0] == '-' && arg[1] && lstat (arg, &st) == 0)
- {
- fprintf (stderr,
- _("Try `%s ./%s' to remove the file %s.\n"),
- argv[0],
- quotearg_n_style (1, shell_quoting_style, arg),
- quote (arg));
- break;
- }
+ {
+ fprintf (stderr,
+ _("Try `%s ./%s' to remove the file %s.\n"),
+ argv[0],
+ quotearg_n_style (1, shell_quoting_style, arg),
+ quote (arg));
+ break;
+ }
}
}
@@ -153,7 +153,7 @@ usage (int status)
{
if (status != EXIT_SUCCESS)
fprintf (stderr, _("Try `%s --help' for more information.\n"),
- program_name);
+ program_name);
else
{
printf (_("Usage: %s [OPTION]... FILE...\n"), program_name);
@@ -196,7 +196,7 @@ use one of these commands:\n\
\n\
%s ./-foo\n\
"),
- program_name, program_name);
+ program_name, program_name);
fputs (_("\
\n\
Note that if you use rm to remove a file, it is usually possible to recover\n\
@@ -248,104 +248,104 @@ main (int argc, char **argv)
while ((c = getopt_long (argc, argv, "dfirvIR", long_opts, NULL)) != -1)
{
switch (c)
- {
- case 'd':
- /* Ignore this option, for backward compatibility with
- coreutils 5.92. FIXME: Some time after 2005, change this
- to report an error (or perhaps behave like FreeBSD does)
- instead of ignoring the option. */
- break;
-
- case 'f':
- x.interactive = RMI_NEVER;
- x.ignore_missing_files = true;
- prompt_once = false;
- break;
-
- case 'i':
- x.interactive = RMI_ALWAYS;
- x.ignore_missing_files = false;
- prompt_once = false;
- break;
-
- case 'I':
- x.interactive = RMI_NEVER;
- x.ignore_missing_files = false;
- prompt_once = true;
- break;
-
- case 'r':
- case 'R':
- x.recursive = true;
- break;
-
- case INTERACTIVE_OPTION:
- {
- int i;
- if (optarg)
- i = XARGMATCH ("--interactive", optarg, interactive_args,
- interactive_types);
- else
- i = interactive_always;
- switch (i)
- {
- case interactive_never:
- x.interactive = RMI_NEVER;
- prompt_once = false;
- break;
-
- case interactive_once:
- x.interactive = RMI_SOMETIMES;
- x.ignore_missing_files = false;
- prompt_once = true;
- break;
-
- case interactive_always:
- x.interactive = RMI_ALWAYS;
- x.ignore_missing_files = false;
- prompt_once = false;
- break;
- }
- break;
- }
-
- case ONE_FILE_SYSTEM:
- x.one_file_system = true;
- break;
-
- case NO_PRESERVE_ROOT:
- preserve_root = false;
- break;
-
- case PRESERVE_ROOT:
- preserve_root = true;
- break;
-
- case PRESUME_INPUT_TTY_OPTION:
- x.stdin_tty = true;
- break;
-
- case 'v':
- x.verbose = true;
- break;
-
- case_GETOPT_HELP_CHAR;
- case_GETOPT_VERSION_CHAR (PROGRAM_NAME, AUTHORS);
- default:
- diagnose_leading_hyphen (argc, argv);
- usage (EXIT_FAILURE);
- }
+ {
+ case 'd':
+ /* Ignore this option, for backward compatibility with
+ coreutils 5.92. FIXME: Some time after 2005, change this
+ to report an error (or perhaps behave like FreeBSD does)
+ instead of ignoring the option. */
+ break;
+
+ case 'f':
+ x.interactive = RMI_NEVER;
+ x.ignore_missing_files = true;
+ prompt_once = false;
+ break;
+
+ case 'i':
+ x.interactive = RMI_ALWAYS;
+ x.ignore_missing_files = false;
+ prompt_once = false;
+ break;
+
+ case 'I':
+ x.interactive = RMI_NEVER;
+ x.ignore_missing_files = false;
+ prompt_once = true;
+ break;
+
+ case 'r':
+ case 'R':
+ x.recursive = true;
+ break;
+
+ case INTERACTIVE_OPTION:
+ {
+ int i;
+ if (optarg)
+ i = XARGMATCH ("--interactive", optarg, interactive_args,
+ interactive_types);
+ else
+ i = interactive_always;
+ switch (i)
+ {
+ case interactive_never:
+ x.interactive = RMI_NEVER;
+ prompt_once = false;
+ break;
+
+ case interactive_once:
+ x.interactive = RMI_SOMETIMES;
+ x.ignore_missing_files = false;
+ prompt_once = true;
+ break;
+
+ case interactive_always:
+ x.interactive = RMI_ALWAYS;
+ x.ignore_missing_files = false;
+ prompt_once = false;
+ break;
+ }
+ break;
+ }
+
+ case ONE_FILE_SYSTEM:
+ x.one_file_system = true;
+ break;
+
+ case NO_PRESERVE_ROOT:
+ preserve_root = false;
+ break;
+
+ case PRESERVE_ROOT:
+ preserve_root = true;
+ break;
+
+ case PRESUME_INPUT_TTY_OPTION:
+ x.stdin_tty = true;
+ break;
+
+ case 'v':
+ x.verbose = true;
+ break;
+
+ case_GETOPT_HELP_CHAR;
+ case_GETOPT_VERSION_CHAR (PROGRAM_NAME, AUTHORS);
+ default:
+ diagnose_leading_hyphen (argc, argv);
+ usage (EXIT_FAILURE);
+ }
}
if (argc <= optind)
{
if (x.ignore_missing_files)
- exit (EXIT_SUCCESS);
+ exit (EXIT_SUCCESS);
else
- {
- error (0, 0, _("missing operand"));
- usage (EXIT_FAILURE);
- }
+ {
+ error (0, 0, _("missing operand"));
+ usage (EXIT_FAILURE);
+ }
}
if (x.recursive & preserve_root)
@@ -353,8 +353,8 @@ main (int argc, char **argv)
static struct dev_ino dev_ino_buf;
x.root_dev_ino = get_root_dev_ino (&dev_ino_buf);
if (x.root_dev_ino == NULL)
- error (EXIT_FAILURE, errno, _("failed to get attributes of %s"),
- quote ("/"));
+ error (EXIT_FAILURE, errno, _("failed to get attributes of %s"),
+ quote ("/"));
}
size_t n_files = argc - optind;
@@ -363,12 +363,12 @@ main (int argc, char **argv)
if (prompt_once && (x.recursive || 3 < n_files))
{
fprintf (stderr,
- (x.recursive
- ? _("%s: remove all arguments recursively? ")
- : _("%s: remove all arguments? ")),
- program_name);
+ (x.recursive
+ ? _("%s: remove all arguments recursively? ")
+ : _("%s: remove all arguments? ")),
+ program_name);
if (!yesno ())
- exit (EXIT_SUCCESS);
+ exit (EXIT_SUCCESS);
}
enum RM_status status = rm (n_files, file, &x);
assert (VALID_STATUS (status));