diff options
author | Nick Wellnhofer <[email protected]> | 2020-01-19 01:22:17 +0100 |
---|---|---|
committer | John MacFarlane <[email protected]> | 2020-01-23 08:25:54 -0800 |
commit | 68a3f24d93ed63fd1545c691442d69630649eadb (patch) | |
tree | fdf98d29c556ba152cd9ad00e81deb52ad9fefc4 /src/render.h | |
parent | b0a4cfa36e99c27dd2b20be8f8888fa7721bad58 (diff) |
Use C string instead of chunk in renderer
Fix another place where an "allocated" cmark_chunk was used.
Diffstat (limited to 'src/render.h')
-rw-r--r-- | src/render.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/render.h b/src/render.h index 0575340..15f6c2c 100644 --- a/src/render.h +++ b/src/render.h @@ -7,7 +7,6 @@ extern "C" { #include <stdlib.h> #include "buffer.h" -#include "chunk.h" typedef enum { LITERAL, NORMAL, TITLE, URL } cmark_escaping; |