From 48bb134d3e40db010dfe4b1afab6f3cb2a7a4855 Mon Sep 17 00:00:00 2001
From: Tavian Barnes <tavianator@tavianator.com>
Date: Tue, 12 Feb 2019 17:18:25 -0500
Subject: Fix missing color escape ($) in the -help output

---
 parse.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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");
-- 
cgit v1.2.3