summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Auerswald <auerswal@unix-ag.uni-kl.de>2011-11-19 22:07:29 +0100
committerJim Meyering <meyering@redhat.com>2011-11-20 08:46:30 +0100
commit5d39ad6419e7084cee3cb432f58dd775997dc948 (patch)
tree38e73313567dc74efe68162f4a8ae7e394c4802e
parent1c5ca5c05bac29aec079df61dae2b7f843cb1f0a (diff)
downloadcoreutils-5d39ad6419e7084cee3cb432f58dd775997dc948.tar.xz
ln: fix position of --backup values description
* src/ln.c (usage): A paragraph describing interactions of -s with -L and -P somehow snuck in between the description of the --backup option and the values used to control it. Fix this by moving the value description up.
-rw-r--r--src/ln.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/ln.c b/src/ln.c
index 3e63bead3..88737eddc 100644
--- a/src/ln.c
+++ b/src/ln.c
@@ -385,17 +385,17 @@ The version control method may be selected via the --backup option or through\n\
the VERSION_CONTROL environment variable. Here are the values:\n\
\n\
"), stdout);
- printf (_("\
-Using -s ignores -L and -P. Otherwise, the last option specified controls\n\
-behavior when the source is a symbolic link, defaulting to %s.\n\
-\n\
-"), LINK_FOLLOWS_SYMLINKS ? "-L" : "-P");
fputs (_("\
none, off never make backups (even if --backup is given)\n\
numbered, t make numbered backups\n\
existing, nil numbered if numbered backups exist, simple otherwise\n\
simple, never always make simple backups\n\
+\n\
"), stdout);
+ printf (_("\
+Using -s ignores -L and -P. Otherwise, the last option specified controls\n\
+behavior when the source is a symbolic link, defaulting to %s.\n\
+"), LINK_FOLLOWS_SYMLINKS ? "-L" : "-P");
emit_ancillary_info ();
}
exit (status);