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
commit017365813ce9fe3f7fb4ea3f1e2f9af72f2a1439 (patch)
tree67764aa50549f726e51c4d3940dbe62cbb458dca /bin/hilex/mdoc.l
parentChange HTML class from hi to hilex (diff)
downloadsrc-017365813ce9fe3f7fb4ea3f1e2f9af72f2a1439.tar.gz
src-017365813ce9fe3f7fb4ea3f1e2f9af72f2a1439.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 cb4c248e..2f01ce2a 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; }