diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2019-02-12 17:18:25 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2019-02-12 17:18:25 -0500 |
commit | 48bb134d3e40db010dfe4b1afab6f3cb2a7a4855 (patch) | |
tree | 546d64c0fba5209ebe5de00a76f0f0783713cb9d | |
parent | 78a00f83b7ddc14abb2da7b1ac6c5c801e206d3f (diff) | |
download | bfs-48bb134d3e40db010dfe4b1afab6f3cb2a7a4855.tar.xz |
Fix missing color escape ($) in the -help output
-rw-r--r-- | parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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"); |