summary refs log tree commit diff
path: root/bin/hilex/mdoc.l
diff options
context:
space:
mode:
Diffstat (limited to 'bin/hilex/mdoc.l')
-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; }