diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-11-05 09:53:35 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-11-05 09:53:35 -0800 |
commit | 715d1a5921a4e3e10220d466c4ee2c1261d28c1e (patch) | |
tree | 25cdfae7c4d3139a448f259b0ba3e52d27f2e1c6 /src/cmark.h | |
parent | 90c48e849440e50b3fef21f0cd6c38b998490073 (diff) |
Removed stack limits in inline parsing.
This brings back segfaults, but we're now aiming for a better solution,
revising the renderer so it doesn't use recursion, and using a stack
approach for nested brackets. Removing these limits will allow us to
know when we've got it right.
See #166, #187.
Diffstat (limited to 'src/cmark.h')
-rw-r--r-- | src/cmark.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/cmark.h b/src/cmark.h index e34df72..ff2f9a2 100644 --- a/src/cmark.h +++ b/src/cmark.h @@ -9,7 +9,6 @@ #define VERSION "0.1" #define CODE_INDENT 4 -#define STACK_LIMIT 1000 struct node_inl { enum { |