diff options
author | June McEnroe <june@causal.agency> | 2021-01-12 21:40:11 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-01-12 21:40:11 -0500 |
commit | 47940e2a528e30903c68abb6c0246cb86772d389 (patch) | |
tree | 63fe27534734a611699c1eeff82f2f0090febcfa /bin/hilex/make.l | |
parent | Add htagml -i (diff) | |
download | src-47940e2a528e30903c68abb6c0246cb86772d389.tar.gz src-47940e2a528e30903c68abb6c0246cb86772d389.zip |
Remove hacky tagging from hilex
God that makes the lexers so much simpler.
Diffstat (limited to 'bin/hilex/make.l')
-rw-r--r-- | bin/hilex/make.l | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/bin/hilex/make.l b/bin/hilex/make.l index e9d3c84d..e7f3def5 100644 --- a/bin/hilex/make.l +++ b/bin/hilex/make.l @@ -73,10 +73,6 @@ operator [:!]|:: ^"-"?include { return Macro; } -{target}([[:blank:]]+{target})*/{operator} { - return IdentifierTag; -} - {target} { return Identifier; } "#"([^\\\n]|"\\"[^\n]|"\\\n")* { return Comment; } |