diff options
author | Yuki Izumi <[email protected]> | 2017-08-09 15:56:21 +1000 |
---|---|---|
committer | Yuki Izumi <[email protected]> | 2017-08-09 15:56:21 +1000 |
commit | 919cdb2c583163411b3b15b2eae0ce72cf2d7981 (patch) | |
tree | 558beeb51433ae15ed2e86b6d440f43215d81bd8 /src/iterator.c | |
parent | 61b51fa7c8ec635eee19a16c6aa38c39093a0572 (diff) |
Add sourcepos info for inlines
Diffstat (limited to 'src/iterator.c')
-rw-r--r-- | src/iterator.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/iterator.c b/src/iterator.c index 24423a2..f5cd802 100644 --- a/src/iterator.c +++ b/src/iterator.c @@ -106,6 +106,7 @@ void cmark_consolidate_text_nodes(cmark_node *root) { while (tmp && tmp->type == CMARK_NODE_TEXT) { cmark_iter_next(iter); // advance pointer cmark_strbuf_put(&buf, tmp->as.literal.data, tmp->as.literal.len); + cur->end_column = tmp->end_column; next = tmp->next; cmark_node_free(tmp); tmp = next; |