diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-05-15 15:30:33 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-05-15 15:30:33 +0000 |
commit | 877bef0b9533150581c911aff80cfbb71c13de8e (patch) | |
tree | dd8226017e02a9986ea94aac1ccd95e3035dda59 /mandoc.h | |
parent | 6ae46f238194f0cb76bd4e0b8dd456d2be0b960d (diff) | |
download | mandoc-877bef0b9533150581c911aff80cfbb71c13de8e.tar.gz |
Support groff's escape for Unicode input. See
http://mdocml.bsd.lv/archives/tech/0368.html
For the time being, we just throw it away.
Diffstat (limited to 'mandoc.h')
-rw-r--r-- | mandoc.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -299,6 +299,7 @@ enum mandoc_esc { ESCAPE_FONTROMAN, /* roman font mode */ ESCAPE_FONTPREV, /* previous font mode */ ESCAPE_NUMBERED, /* a numbered glyph */ + ESCAPE_UNICODE, /* a unicode codepoint */ ESCAPE_NOSPACE /* suppress space if the last on a line */ }; |