diff options
| -rw-r--r-- | src/cmark.h | 2 | ||||
| -rw-r--r-- | src/inlines.c | 2 | 
2 files changed, 2 insertions, 2 deletions
| 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) { | 
