summaryrefslogtreecommitdiff
path: root/lib/argmatch.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2004-09-13 12:10:30 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2004-09-13 12:10:30 +0000
commite55016b54d54dcccef576877420b8ed58a5d4d36 (patch)
treee9836c017e6b58c53266fab4dfe161f5dddbdd0e /lib/argmatch.c
parentd2ea67e96f5dfb33259b4a96b3bd730c13012003 (diff)
downloadcoreutils-e55016b54d54dcccef576877420b8ed58a5d4d36.tar.xz
(enum backuptype): Rename none -> no_backups,
simple -> simple_backups, numbered_existing -> numbered_existing_backups, numbered -> numbered_backups to avoid shadowing problems. All uses changed.
Diffstat (limited to 'lib/argmatch.c')
-rw-r--r--lib/argmatch.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/lib/argmatch.c b/lib/argmatch.c
index 1a8ec2f54..ffc638c27 100644
--- a/lib/argmatch.c
+++ b/lib/argmatch.c
@@ -216,17 +216,17 @@ char *program_name;
enum backup_type
{
/* Never make backups. */
- none,
+ no_backups,
/* Make simple backups of every file. */
- simple,
+ simple_backups,
/* Make numbered backups of files that already have numbered backups,
and simple backups of the others. */
- numbered_existing,
+ numbered_existing_backups,
/* Make numbered backups of every file. */
- numbered
+ numbered_backups
};
/* Two tables describing arguments (keys) and their corresponding
@@ -242,17 +242,17 @@ static const char *const backup_args[] =
static const enum backup_type backup_vals[] =
{
- none, none, none,
- simple, simple,
- numbered_existing, numbered_existing,
- numbered, numbered
+ no_backups, no_backups, no_backups,
+ simple_backups, simple_backups,
+ numbered_existing_backups, numbered_existing_backups,
+ numbered_backups, numbered_backups
};
int
main (int argc, const char *const *argv)
{
const char *cp;
- enum backup_type backup_type = none;
+ enum backup_type backup_type = no_backups;
program_name = (char *) argv[0];