diff options
author | Nick Wellnhofer <wellnhofer@aevum.de> | 2014-11-17 20:13:20 +0100 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-11-17 21:43:46 -0800 |
commit | 24643bde1d2c79cc512242379868efadf653c1da (patch) | |
tree | ba859dea0838032ff5c1f7b6377f47fa74969e2e /src/ast.h | |
parent | b66573cb303f9174a6b86138a7c8782eeb03b3ad (diff) |
Switch cmark_node_block over to cmark_node
Diffstat (limited to 'src/ast.h')
-rw-r--r-- | src/ast.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -89,8 +89,8 @@ struct cmark_node_block { struct cmark_doc_parser { struct cmark_reference_map *refmap; - struct cmark_node_block* root; - struct cmark_node_block* current; + struct cmark_node* root; + struct cmark_node* current; int line_number; cmark_strbuf *curline; }; |