summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-07-12 15:33:44 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2015-07-12 15:33:44 -0700
commit46ac1e61878a6eefea1f3bfff8d25edf8eca0c05 (patch)
tree4fb5cf08e39557430b33b3a60291fa2a0aea6134 /src/main.c
parent9219938929274df6398dfe6b9356fd8bbb3d565b (diff)
Added width parameter to render_man.
Rewrote man.c using new renderer framework.
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index e53acfb..26e42ca 100644
--- a/src/main.c
+++ b/src/main.c
@@ -47,7 +47,7 @@ static void print_document(cmark_node *document, writer_format writer,
result = cmark_render_xml(document, options);
break;
case FORMAT_MAN:
- result = cmark_render_man(document, options);
+ result = cmark_render_man(document, options, width);
break;
case FORMAT_COMMONMARK:
result = cmark_render_commonmark(document, options, width);