From acac9428faa1c3193fb44b3fb0e2dd3cbdaa4ac9 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Sat, 22 Nov 2014 21:22:26 -0800 Subject: Renamed NODE_BQUOTE -> NODE_BLOCK_QUOTE. --- src/html/html.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/html/html.c') diff --git a/src/html/html.c b/src/html/html.c index 889941c..0ce4443 100644 --- a/src/html/html.c +++ b/src/html/html.c @@ -109,10 +109,10 @@ static void node_to_html(strbuf *html, cmark_node *node) } break; - case NODE_BQUOTE: + case NODE_BLOCK_QUOTE: cr(html); strbuf_puts(html, "
\n"); - // BQUOTE doesn't use any of the 'as' structs, + // BLOCK_QUOTE doesn't use any of the 'as' structs, // so the 'list' member can be used to store the // current value of 'tight'. cur->as.list.tight = tight; @@ -290,7 +290,7 @@ finish_node(strbuf *html, cmark_node *node, bool tight) } break; - case NODE_BQUOTE: { + case NODE_BLOCK_QUOTE: { cmark_list *list = &node->as.list; strbuf_puts(html, "
\n"); // Restore old 'tight' value. -- cgit v1.2.3