diff options
author | John MacFarlane <[email protected]> | 2014-11-28 21:56:08 -0800 |
---|---|---|
committer | John MacFarlane <[email protected]> | 2014-11-28 21:56:08 -0800 |
commit | feb119992a6fbea3cedead04b1941b1fe114990b (patch) | |
tree | 6895db0c15c9fa5125b5e800fe82f9965b8b2a1d /src/node.c | |
parent | 9e9b74fe465d95f1d827de1825a18c39810c0816 (diff) |
Renamed identifiers in public API:
cmark_doc_parser => cmark_parser
cmark_new_doc_parser => cmark_parser_new
cmark_free_doc_parser => cmark_parser_free
cmark_finish => cmark_parser_finish
cmark_process_line => cmark_parser_process_line
cmark_node_destroy => cmark_node_free
Closes #223.
Diffstat (limited to 'src/node.c')
-rw-r--r-- | src/node.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -33,7 +33,7 @@ cmark_node_new(cmark_node_type type) { } void -cmark_node_destroy(cmark_node *node) { +cmark_node_free(cmark_node *node) { S_node_unlink(node); node->next = NULL; cmark_free_nodes(node); |