summary refs log tree commit diff
path: root/bin/hilex/make.l
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2021-01-12 21:40:11 -0500
committerJune McEnroe <june@causal.agency>2021-01-12 21:40:11 -0500
commit118a437acfb7b53d7522c71bd3f99982724b425b (patch)
treec6e3029a4a9497be67112e3a7333147d6e41ded1 /bin/hilex/make.l
parentAdd htagml -i (diff)
downloadsrc-118a437acfb7b53d7522c71bd3f99982724b425b.tar.gz
src-118a437acfb7b53d7522c71bd3f99982724b425b.zip
Remove hacky tagging from hilex
God that makes the lexers so much simpler.
Diffstat (limited to '')
-rw-r--r--bin/hilex/make.l4
1 files changed, 0 insertions, 4 deletions
diff --git a/bin/hilex/make.l b/bin/hilex/make.l
index 31b85574..952c589d 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; }