aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mandoc.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-05-15 15:30:33 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-05-15 15:30:33 +0000
commitc462999d899acf87741657ed63dff7612559ce20 (patch)
tree4e1028eea4535afb09994ed28b83f7337878f9e7 /mandoc.h
parent4dc1b5414a1d1531b0c9a1b0061792b0076e329a (diff)
downloadmandoc-c462999d899acf87741657ed63dff7612559ce20.tar.gz
mandoc-c462999d899acf87741657ed63dff7612559ce20.tar.zst
mandoc-c462999d899acf87741657ed63dff7612559ce20.zip
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.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/mandoc.h b/mandoc.h
index 55878b62..db7b30bf 100644
--- a/mandoc.h
+++ b/mandoc.h
@@ -1,4 +1,4 @@
-/* $Id: mandoc.h,v 1.74 2011/04/30 22:24:31 kristaps Exp $ */
+/* $Id: mandoc.h,v 1.75 2011/05/15 15:30:33 kristaps Exp $ */
/*
* Copyright (c) 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -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 */
};