summaryrefslogtreecommitdiff
path: root/src/man.c
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-12-22 22:41:33 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2015-12-22 22:41:33 -0800
commitde6c5fb2c45dfa2791074f7d99a27b23b2106dfc (patch)
tree7416568ce255cfcaa14e3a8901966df0c5a2c906 /src/man.c
parenta74295a1ea686611498a75dd45597d224ce99287 (diff)
CMARK_NODE_HEADER -> CMARK_NODE_HEADING.
Defined CMARK_NODE_HEADER to CMARK_NODE_HEADING to ease the transition.
Diffstat (limited to 'src/man.c')
-rw-r--r--src/man.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/man.c b/src/man.c
index 42f6e4a..941cda9 100644
--- a/src/man.c
+++ b/src/man.c
@@ -120,7 +120,7 @@ static int S_render_node(cmark_renderer *renderer, cmark_node *node,
}
break;
- case CMARK_NODE_HEADER:
+ case CMARK_NODE_HEADING:
if (entering) {
CR();
LIT(cmark_node_get_heading_level(node) == 1 ? ".SH" : ".SS");