summary refs log tree commit diff
path: root/bin/hilex/mdoc.l
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-12-29 13:59:05 -0500
committerJune McEnroe <june@causal.agency>2020-12-29 13:59:05 -0500
commit97d3d661c8972045f7f8a32cb094d9146b4b76f2 (patch)
tree37696895d510ef2304af7f6fe33c71a4e4a19328 /bin/hilex/mdoc.l
parentChange HTML class from hi to hilex (diff)
downloadsrc-97d3d661c8972045f7f8a32cb094d9146b4b76f2.tar.gz
src-97d3d661c8972045f7f8a32cb094d9146b4b76f2.zip
Rename Tag class to IdentifierTag
Diffstat (limited to '')
-rw-r--r--bin/hilex/mdoc.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/hilex/mdoc.l b/bin/hilex/mdoc.l
index e0911628..88594b44 100644
--- a/bin/hilex/mdoc.l
+++ b/bin/hilex/mdoc.l
@@ -58,7 +58,7 @@
 		return Normal;
 	}
 
-	[^[:space:]].* { return Tag; }
+	[^[:space:]].* { return IdentifierTag; }
 }
 
 "\\"(.|"("..|"["[^]]*"]") { return String; }