diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-03-16 22:19:19 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-03-16 22:19:19 +0000 |
commit | 0f78a072b396e52a775bdbe9f6687c67bf1439bb (patch) | |
tree | b27a8c382f8dea4d64b1e228090f7c5197a03726 /mdoc.h | |
parent | 0f40156e5aa1d8acdf0a8c560bdeabb48fdd4271 (diff) | |
download | mandoc-0f78a072b396e52a775bdbe9f6687c67bf1439bb.tar.gz |
Fixed mdoc_phrase escape handling.
Added MDOC_IGNDELIM (Pf, soon Li, etc.).
macro_constant_delimited ignargs -> argv.c parsing.
Renamed macro functions to correspond to ontologies.
`Fo' and `St' made callable (compat documented).
strings.sh deprecated (directly using CPP).
Abstracted ASCII translation into ascii.{c,in}.
ASCII table uses a self-reordering chained hashtable.
Removed old regressions.
Diffstat (limited to 'mdoc.h')
-rw-r--r-- | mdoc.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -31,8 +31,6 @@ /* What follows is a list of ALL possible macros. */ -/* TODO: Brq et al. */ - #define MDOC___ 0 #define MDOC_Dd 1 #define MDOC_Dt 2 @@ -148,7 +146,9 @@ #define MDOC_Bro 112 #define MDOC_Brc 113 #define MDOC__C 114 -#define MDOC_MAX 115 +#define MDOC_Es 115 +#define MDOC_En 116 +#define MDOC_MAX 117 /* What follows is a list of ALL possible macro arguments. */ |