From 831bf6de49ae58bd3630f40bdb6f8bc5371a33dd Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Fri, 12 Dec 2014 23:49:52 -0800 Subject: Revert "Removed CMARK_NODE_REFERENCE_DEF from API." This reverts commit b598b52a4acdc2332be3d34e30237d1b93b7dd03. The change led to some problems, because some of the callers of 'finalize' expected the node to exist after the call. This could all be rewritten, but for now let's just revert. --- man/man3/cmark.3 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'man') diff --git a/man/man3/cmark.3 b/man/man3/cmark.3 index 30165a1..7f70972 100644 --- a/man/man3/cmark.3 +++ b/man/man3/cmark.3 @@ -43,9 +43,10 @@ typedef enum { CMARK_NODE_PARAGRAPH, CMARK_NODE_HEADER, CMARK_NODE_HRULE, + CMARK_NODE_REFERENCE_DEF, CMARK_NODE_FIRST_BLOCK = CMARK_NODE_DOCUMENT, - CMARK_NODE_LAST_BLOCK = CMARK_NODE_HRULE, + CMARK_NODE_LAST_BLOCK = CMARK_NODE_REFERENCE_DEF, /* Inline */ CMARK_NODE_TEXT, -- cgit v1.2.3