From 03f7a9976b388e476f2850c33f22cc63572f6a48 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Thu, 12 Mar 2009 16:30:50 +0000 Subject: Added -nested (doesn't do anything). Added .%C. .Cd is now callable. Added .Rv -std. --- mdoc.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'mdoc.h') diff --git a/mdoc.h b/mdoc.h index 42a55e07..9e6a6c13 100644 --- a/mdoc.h +++ b/mdoc.h @@ -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 { -- cgit