From 6e25c889cf33a6217a9b4cf37ea1a6361883901b Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Tue, 16 Dec 2014 12:01:19 -0800 Subject: Added 'literal' field to 'code' struct. In the last few commits we were using as.code.fenced and as.literal at the same time for NODE_CODE_BLOCK, which obviously led to problems. --- src/man.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/man.c') diff --git a/src/man.c b/src/man.c index e72a121..36a5c99 100644 --- a/src/man.c +++ b/src/man.c @@ -130,8 +130,8 @@ S_render_node(cmark_node *node, cmark_event_type ev_type, void *vstate) case CMARK_NODE_CODE_BLOCK: cr(man); cmark_strbuf_puts(man, ".IP\n.nf\n\\f[C]\n"); - escape_man(man, node->as.literal.data, - node->as.literal.len); + escape_man(man, node->as.code.literal.data, + node->as.code.literal.len); cr(man); cmark_strbuf_puts(man, "\\f[]\n.fi"); cr(man); -- cgit v1.2.3