diff options
author | 2017-06-14 01:31:19 +0000 | |
---|---|---|
committer | 2017-06-14 01:31:19 +0000 | |
commit | 6167ec38c25c524dfc7cd0fa734962d15add0402 (patch) | |
tree | 1e48989fc29fbfb8c5d9beab9c38b70cde91fed6 /usr.bin/mandoc/mandoc.h | |
parent | Add user@host prefix to client's "Permisison denied" messages, useful in (diff) | |
download | wireguard-openbsd-6167ec38c25c524dfc7cd0fa734962d15add0402.tar.xz wireguard-openbsd-6167ec38c25c524dfc7cd0fa734962d15add0402.zip |
implement the roff(7) \p (break output line) escape sequence
Diffstat (limited to 'usr.bin/mandoc/mandoc.h')
-rw-r--r-- | usr.bin/mandoc/mandoc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/mandoc/mandoc.h b/usr.bin/mandoc/mandoc.h index 6f14e23ec31..ed4d1d7fc17 100644 --- a/usr.bin/mandoc/mandoc.h +++ b/usr.bin/mandoc/mandoc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mandoc.h,v 1.171 2017/06/11 19:36:31 schwarze Exp $ */ +/* $OpenBSD: mandoc.h,v 1.172 2017/06/14 01:31:19 schwarze Exp $ */ /* * Copyright (c) 2010, 2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2010-2017 Ingo Schwarze <schwarze@openbsd.org> @@ -423,6 +423,7 @@ enum mandoc_esc { ESCAPE_FONTPREV, /* previous font mode */ ESCAPE_NUMBERED, /* a numbered glyph */ ESCAPE_UNICODE, /* a unicode codepoint */ + ESCAPE_BREAK, /* break the output line */ ESCAPE_NOSPACE, /* suppress space if the last on a line */ ESCAPE_HORIZ, /* horizontal movement */ ESCAPE_HLINE, /* horizontal line drawing */ |