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 /action.c | |
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 'action.c')
-rw-r--r-- | action.c | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -62,6 +62,9 @@ static int post_sh(struct mdoc *); static int post_std(struct mdoc *); static int post_prologue(struct mdoc *); +#define merr(m, t) nerr((m), (m)->last, (t)) +#define mwarn(m, t) nwarn((m), (m)->last, (t)) + const struct actions mdoc_actions[MDOC_MAX] = { { NULL }, /* \" */ { post_dd }, /* Dd */ @@ -178,10 +181,11 @@ const struct actions mdoc_actions[MDOC_MAX] = { { NULL }, /* Bro */ { NULL }, /* Brc */ { NULL }, /* %C */ + { NULL }, /* Es */ + { NULL }, /* En */ }; -#define merr(m, t) nerr((m), (m)->last, (t)) static int nerr(struct mdoc *m, const struct mdoc_node *n, enum merr type) { @@ -200,7 +204,6 @@ nerr(struct mdoc *m, const struct mdoc_node *n, enum merr type) } -#define mwarn(m, t) nwarn((m), (m)->last, (t)) static int nwarn(struct mdoc *m, const struct mdoc_node *n, enum mwarn type) { |