diff options
author | 2009-07-07 00:54:46 +0000 | |
---|---|---|
committer | 2009-07-07 00:54:46 +0000 | |
commit | d31954ece77dad873aa0f0a000abc4dda17e9bc4 (patch) | |
tree | 67e3616aefa5ccef595f2a86ee0a7333f764f55c /usr.bin/mandoc/man.h | |
parent | The word "indent" has a special meaning in ".Bd -tag -offset indent", (diff) | |
download | wireguard-openbsd-d31954ece77dad873aa0f0a000abc4dda17e9bc4.tar.xz wireguard-openbsd-d31954ece77dad873aa0f0a000abc4dda17e9bc4.zip |
sync to 1.7.21: provide WESCAPE and MAN_IGN_ESCAPE,
to be used soon in man_validate.c
Diffstat (limited to 'usr.bin/mandoc/man.h')
-rw-r--r-- | usr.bin/mandoc/man.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/mandoc/man.h b/usr.bin/mandoc/man.h index 4b966542839..4e747ba98d0 100644 --- a/usr.bin/mandoc/man.h +++ b/usr.bin/mandoc/man.h @@ -1,4 +1,4 @@ -/* $Id: man.h,v 1.4 2009/06/23 22:31:26 schwarze Exp $ */ +/* $Id: man.h,v 1.5 2009/07/07 00:54:46 schwarze Exp $ */ /* * Copyright (c) 2009 Kristaps Dzonsons <kristaps@kth.se> * @@ -76,6 +76,7 @@ struct man_node { #define MAN_IGN_MACRO (1 << 0) #define MAN_IGN_CHARS (1 << 1) +#define MAN_IGN_ESCAPE (1 << 2) extern const char *const *man_macronames; |