diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-03-12 16:30:50 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-03-12 16:30:50 +0000 |
commit | 03f7a9976b388e476f2850c33f22cc63572f6a48 (patch) | |
tree | 212211aed9deabbdb3b4aabe5c95343e84e0bb28 /mdoc.h | |
parent | dd35a6706a756677ff1c2734a6eb2fad8a6784fb (diff) | |
download | mandoc-03f7a9976b388e476f2850c33f22cc63572f6a48.tar.gz |
Added -nested (doesn't do anything).
Added .%C.
.Cd is now callable.
Added .Rv -std.
Diffstat (limited to 'mdoc.h')
-rw-r--r-- | mdoc.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -147,7 +147,8 @@ #define MDOC_Brq 111 #define MDOC_Bro 112 #define MDOC_Brc 113 -#define MDOC_MAX 114 +#define MDOC__C 114 +#define MDOC_MAX 115 /* What follows is a list of ALL possible macro arguments. */ @@ -176,7 +177,8 @@ #define MDOC_Words 22 #define MDOC_Emphasis 23 #define MDOC_Symbolic 24 -#define MDOC_ARG_MAX 25 +#define MDOC_Nested 25 +#define MDOC_ARG_MAX 26 /* Warnings are either syntax or groff-compatibility. */ enum mdoc_warn { |