diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2014-10-28 17:36:19 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2014-10-28 17:36:19 +0000 |
commit | e140259c6ca1889b0dddef8b075524723b147cfe (patch) | |
tree | 351a20004d594caa3735ca29afb581ace2b8ea76 /html.h | |
parent | 9a3f7e6d544fc2f5c114c480cb724e44cfac1ea9 (diff) | |
download | mandoc-e140259c6ca1889b0dddef8b075524723b147cfe.tar.gz |
Make the character table available to libroff so it can check the
validity of character escape names and warn about unknown ones.
This requires mchars_spec2cp() to report unknown names again.
Fortunately, that doesn't require changing the calling code because
according to groff, invalid character escapes should not produce
output anyway, and now that we warn about them, that's fine.
Diffstat (limited to 'html.h')
-rw-r--r-- | html.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -133,7 +133,7 @@ struct html { struct tagq tags; /* stack of open tags */ struct rofftbl tbl; /* current table */ struct tag *tblt; /* current open table scope */ - struct mchars *symtab; /* character-escapes */ + const struct mchars *symtab; /* character table */ char *base_man; /* base for manpage href */ char *base_includes; /* base for include href */ char *style; /* style-sheet URI */ |