diff options
author | June McEnroe <june@causal.agency> | 2021-04-26 16:49:05 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-04-26 16:49:05 -0400 |
commit | 9649506eab1151836f38f9c5382bdf4220e75479 (patch) | |
tree | 82684c9d020923c817b8f9c1cb23ddeade6759c3 | |
parent | Remove vim alias (diff) | |
download | src-9649506eab1151836f38f9c5382bdf4220e75479.tar.gz src-9649506eab1151836f38f9c5382bdf4220e75479.zip |
Match space between #! and /bin/sh
Diffstat (limited to '')
-rw-r--r-- | bin/hilex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/hilex.c b/bin/hilex.c index 8a03eb80..91a5e889 100644 --- a/bin/hilex.c +++ b/bin/hilex.c @@ -53,7 +53,7 @@ static const struct { { &LexC, "c", "[.][chlmy]$", NULL }, { &LexMake, "make", "[.](mk|am)$|^Makefile$", NULL }, { &LexMdoc, "mdoc", "[.][1-9]$", "^[.]Dd" }, - { &LexSh, "sh", "[.]sh$|^[.](profile|shrc)$", "^#!/bin/sh" }, + { &LexSh, "sh", "[.]sh$|^[.](profile|shrc)$", "^#![ ]?/bin/sh" }, { &LexText, "text", "[.]txt$", NULL }, }; |