summaryrefslogtreecommitdiff
path: root/src/parser.h
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2017-01-03 22:10:33 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2017-01-03 22:10:33 -0800
commitfb6356e3aa7696183f6cbcb99e521ab74260124a (patch)
tree641555d5769cd242958da14049b5ecb77b5833ba /src/parser.h
parent5a3f747222d48422eb1d4e5c60cc5a042808fd0d (diff)
Revert "More sourcepos! (#169)"
This reverts commit 9e643720ec903f3b448bd2589a0c02c2514805ae.
Diffstat (limited to 'src/parser.h')
-rw-r--r--src/parser.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/parser.h b/src/parser.h
index b28a8a7..0c5033b 100644
--- a/src/parser.h
+++ b/src/parser.h
@@ -5,7 +5,6 @@
#include "node.h"
#include "buffer.h"
#include "memory.h"
-#include "source_map.h"
#ifdef __cplusplus
extern "C" {
@@ -28,12 +27,9 @@ struct cmark_parser {
bool partially_consumed_tab;
cmark_strbuf curline;
bufsize_t last_line_length;
- bufsize_t line_offset;
cmark_strbuf linebuf;
int options;
bool last_buffer_ended_with_cr;
- cmark_source_map *source_map;
- cmark_source_extent *last_paragraph_extent;
};
#ifdef __cplusplus