From c71830e3db5047322f5e8601f9ec7154dbe1dd30 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Thu, 23 Jun 2016 23:08:50 -0700 Subject: Removed positon from delimiter struct. It is no longer needed; only the brackets struct needs it. Thanks to @robinst. --- src/inlines.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/inlines.c') diff --git a/src/inlines.c b/src/inlines.c index 6f0adef..41c7140 100644 --- a/src/inlines.c +++ b/src/inlines.c @@ -34,7 +34,6 @@ typedef struct delimiter { struct delimiter *previous; struct delimiter *next; cmark_node *inl_text; - bufsize_t position; unsigned char delim_char; bool can_open; bool can_close; @@ -375,7 +374,6 @@ static void push_delimiter(subject *subj, unsigned char c, bool can_open, if (delim->previous != NULL) { delim->previous->next = delim; } - delim->position = subj->pos; subj->last_delim = delim; } -- cgit v1.2.3