diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-03-20 16:43:28 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-03-20 16:43:28 +0000 |
commit | be580e96cc87913d3720c581d51bf965f725d8aa (patch) | |
tree | b52d9af1c3f2c4bd2c7afd1ff87be2fcbc7e6f91 /action.c | |
parent | 00aebf138812dfbbad4079310459c4a98d262466 (diff) | |
download | mandoc-be580e96cc87913d3720c581d51bf965f725d8aa.tar.gz |
Fixed literal-formatting error with `Dl'.
Diffstat (limited to 'action.c')
-rw-r--r-- | action.c | 13 |
1 files changed, 7 insertions, 6 deletions
@@ -57,7 +57,7 @@ static int post_ar(POST_ARGS); static int post_bl(POST_ARGS); static int post_bl_width(POST_ARGS); static int post_bl_tagwidth(POST_ARGS); -static int post_display(POST_ARGS); +static int post_bd(POST_ARGS); static int post_dd(POST_ARGS); static int post_dt(POST_ARGS); static int post_nm(POST_ARGS); @@ -66,7 +66,7 @@ static int post_prol(POST_ARGS); static int post_sh(POST_ARGS); static int post_std(POST_ARGS); -static int pre_display(PRE_ARGS); +static int pre_bd(PRE_ARGS); #define merr(m, t) perr((m), (m)->last->line, (m)->last->pos, (t)) #define mwarn(m, t) pwarn((m), (m)->last->line, (m)->last->pos, (t)) @@ -80,8 +80,8 @@ const struct actions mdoc_actions[MDOC_MAX] = { { NULL, NULL }, /* Ss */ { NULL, NULL }, /* Pp */ { NULL, NULL }, /* D1 */ - { pre_display, post_display }, /* Dl */ - { pre_display, post_display }, /* Bd */ + { NULL, NULL }, /* Dl */ + { pre_bd, post_bd }, /* Bd */ { NULL, NULL }, /* Ed */ { NULL, post_bl }, /* Bl */ { NULL, NULL }, /* El */ @@ -686,7 +686,7 @@ post_prol(POST_ARGS) static int -pre_display(PRE_ARGS) +pre_bd(PRE_ARGS) { int i; @@ -699,6 +699,7 @@ pre_display(PRE_ARGS) */ n = n->parent; + for (i = 0; i < (int)n->args->argc; i++) if (MDOC_Literal == n->args->argv[i].arg) break; @@ -713,7 +714,7 @@ pre_display(PRE_ARGS) static int -post_display(POST_ARGS) +post_bd(POST_ARGS) { if (MDOC_BODY == m->last->type) |