diff options
author | June McEnroe <june@causal.agency> | 2020-12-29 13:59:05 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-12-29 13:59:05 -0500 |
commit | 017365813ce9fe3f7fb4ea3f1e2f9af72f2a1439 (patch) | |
tree | 67764aa50549f726e51c4d3940dbe62cbb458dca /bin/hilex/mdoc.l | |
parent | Change HTML class from hi to hilex (diff) | |
download | src-017365813ce9fe3f7fb4ea3f1e2f9af72f2a1439.tar.gz src-017365813ce9fe3f7fb4ea3f1e2f9af72f2a1439.zip |
Rename Tag class to IdentifierTag
Diffstat (limited to 'bin/hilex/mdoc.l')
-rw-r--r-- | bin/hilex/mdoc.l | 2 |
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; } |