From 9253c0eab573e5ca0d37e4b1db77d3b0bfcf3be6 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Tue, 28 Oct 2014 22:57:01 -0700 Subject: Changed EMPHASIS_STACK_LIMIT -> STACK_LIMIT. We'll also use it in parsing bracketed link labels. --- src/cmark.h | 2 +- src/inlines.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/cmark.h b/src/cmark.h index 5e508e4..e34df72 100644 --- a/src/cmark.h +++ b/src/cmark.h @@ -9,7 +9,7 @@ #define VERSION "0.1" #define CODE_INDENT 4 -#define EMPHASIS_STACK_LIMIT 1000 +#define STACK_LIMIT 1000 struct node_inl { enum { diff --git a/src/inlines.c b/src/inlines.c index d282170..26eb02a 100644 --- a/src/inlines.c +++ b/src/inlines.c @@ -393,7 +393,7 @@ static node_inl* handle_strong_emph(subject* subj, unsigned char c, node_inl **l cannotClose: inl_text = make_str(chunk_dup(&subj->input, subj->pos - numdelims, numdelims)); - if (can_open && subj->emphasis_nestlevel < EMPHASIS_STACK_LIMIT) + if (can_open && subj->emphasis_nestlevel < STACK_LIMIT) { istack = (inline_stack*)malloc(sizeof(inline_stack)); if (istack == NULL) { -- cgit v1.2.3