summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2019-07-05 19:10:22 -0400
committerTavian Barnes <tavianator@tavianator.com>2019-07-05 19:10:22 -0400
commitea7899f9fd832d5fec630d3ad9cbe1e2855d78f5 (patch)
tree4edb9293fce79624e3c78bd9be15072f547e36d7
parentc6d518c66fc0774206ec439adfb6cc375913e2a4 (diff)
downloadbfs-ea7899f9fd832d5fec630d3ad9cbe1e2855d78f5.tar.xz
Make -mount and -xdev documentation alphabetical
-rw-r--r--bfs.16
-rw-r--r--parse.c6
2 files changed, 6 insertions, 6 deletions
diff --git a/bfs.1 b/bfs.1
index 277aeb7..f2f7daa 100644
--- a/bfs.1
+++ b/bfs.1
@@ -248,9 +248,6 @@ Ignore files deeper/shallower than
.B \-mount
Skip mount points entirely.
.TP
-.B \-xdev
-Don't descend into other mount points.
-.TP
.B \-noleaf
Ignored; for compatibility with GNU find.
.TP
@@ -274,6 +271,9 @@ Particularly useful along with
.RS
Turn on or off warnings about the command line.
.RE
+.TP
+.B \-xdev
+Don't descend into other mount points.
.SH TESTS
.TP
.B \-acl
diff --git a/parse.c b/parse.c
index 70cf13d..6a81fa7 100644
--- a/parse.c
+++ b/parse.c
@@ -2609,8 +2609,6 @@ static struct expr *parse_help(struct parser_state *state, int arg1, int arg2) {
cfprintf(cout, " Ignore files deeper/shallower than ${bld}N${rs}\n");
cfprintf(cout, " ${blu}-mount${rs}\n");
cfprintf(cout, " Skip mount points entirely\n");
- cfprintf(cout, " ${blu}-xdev${rs}\n");
- cfprintf(cout, " Don't descend into other mount points\n");
cfprintf(cout, " ${blu}-noleaf${rs}\n");
cfprintf(cout, " Ignored; for compatibility with GNU find\n");
cfprintf(cout, " ${blu}-regextype${rs} ${bld}TYPE${rs}\n");
@@ -2620,7 +2618,9 @@ static struct expr *parse_help(struct parser_state *state, int arg1, int arg2) {
cfprintf(cout, " Skip any files that have already been seen\n");
cfprintf(cout, " ${blu}-warn${rs}\n");
cfprintf(cout, " ${blu}-nowarn${rs}\n");
- cfprintf(cout, " Turn on or off warnings about the command line\n\n");
+ cfprintf(cout, " Turn on or off warnings about the command line\n");
+ cfprintf(cout, " ${blu}-xdev${rs}\n");
+ cfprintf(cout, " Don't descend into other mount points\n\n");
cfprintf(cout, "${bld}Tests:${rs}\n\n");