summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2019-02-12 17:18:25 -0500
committerTavian Barnes <tavianator@tavianator.com>2019-02-12 17:18:25 -0500
commit48bb134d3e40db010dfe4b1afab6f3cb2a7a4855 (patch)
tree546d64c0fba5209ebe5de00a76f0f0783713cb9d
parent78a00f83b7ddc14abb2da7b1ac6c5c801e206d3f (diff)
downloadbfs-48bb134d3e40db010dfe4b1afab6f3cb2a7a4855.tar.xz
Fix missing color escape ($) in the -help output
-rw-r--r--parse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/parse.c b/parse.c
index 80aeb88..312f8ed 100644
--- a/parse.c
+++ b/parse.c
@@ -2477,7 +2477,7 @@ static struct expr *parse_help(struct parser_state *state, int arg1, int arg2) {
cfprintf(cout, " ${blu}-nouser${rs}\n");
cfprintf(cout, " Find files owned by nonexistent groups/users\n");
cfprintf(cout, " ${blu}-path${rs} ${bld}GLOB${rs}\n");
- cfprintf(cout, " ${blu}-wholename{rs} ${bld}GLOB${rs}\n");
+ cfprintf(cout, " ${blu}-wholename${rs} ${bld}GLOB${rs}\n");
cfprintf(cout, " Find files whose entire path matches the ${bld}GLOB${rs}\n");
cfprintf(cout, " ${blu}-perm${rs} ${bld}[-]MODE${rs}\n");
cfprintf(cout, " Find files with a matching mode\n");