summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-02-12 18:18:52 -0500
committerJune McEnroe <june@causal.agency>2019-02-12 18:18:52 -0500
commit03470766d32782746fd158efab144d9e588ffb0d (patch)
tree9d4f341055cd632c6550e82402afdf874e6fa43b
parentUnify *up scripts into one up.sh (diff)
downloadsrc-03470766d32782746fd158efab144d9e588ffb0d.tar.gz
src-03470766d32782746fd158efab144d9e588ffb0d.zip
Fix sh comment pattern to require blank
-rw-r--r--bin/hi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/hi.c b/bin/hi.c
index 9ac3851e..2da1ea6d 100644
--- a/bin/hi.c
+++ b/bin/hi.c
@@ -236,7 +236,7 @@ static const struct Syntax ShSyntax[] = {
 		"(([^\n]|\n\t*[^E]|\n\t*E[^O]|\n\t*EO[^F]|\n\t*EOF[^\n])*)"
 		"\n\t*EOF\n" },
 	{ Comment, .parent = ~SET(String), .subexp = 2,
-		.pattern = "(^|" WS ")" "(#.*)" },
+		.pattern = "(^|[[:blank:]]+)(#.*)" },
 	{ Todo, .parent = SET(Comment),
 		.pattern = PATTERN_TODO },
 };