summaryrefslogtreecommitdiff
path: root/src/parser.h
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2016-02-05 22:43:22 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2016-02-05 22:43:22 -0800
commitc351c72220406d3e934049808ecd09e599487a85 (patch)
treecf1772308daead6d773e365fac19aba2d20d7c3a /src/parser.h
parent6182bc78cc0531a735a0ffc452f2922485af05c1 (diff)
Added partially_consumed_tab to parser.
This keeps track of when we have gotten partway through a tab when consuming initial indentation.
Diffstat (limited to 'src/parser.h')
-rw-r--r--src/parser.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/parser.h b/src/parser.h
index f359e10..b3ff39b 100644
--- a/src/parser.h
+++ b/src/parser.h
@@ -22,6 +22,7 @@ struct cmark_parser {
bufsize_t first_nonspace_column;
int indent;
bool blank;
+ bool partially_consumed_tab;
cmark_strbuf *curline;
bufsize_t last_line_length;
cmark_strbuf *linebuf;