diff options
author | John MacFarlane <[email protected]> | 2014-12-15 12:05:04 -0800 |
---|---|---|
committer | John MacFarlane <[email protected]> | 2014-12-15 12:05:04 -0800 |
commit | d6077ea037e23f6e2c0d83dda7b5d7106f48d1a3 (patch) | |
tree | 5bf5a03ba41d8570ecea1846ac6cd36c049bfc7a /src/parser.h | |
parent | ab19f3cf3c247a5216ae7e7e78ef8c2eaac7ce0a (diff) |
Re-added cmark_ prefix to strbuf and chunk.
Reverts 225d720.
Diffstat (limited to 'src/parser.h')
-rw-r--r-- | src/parser.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parser.h b/src/parser.h index 1f63d9c..9d65b67 100644 --- a/src/parser.h +++ b/src/parser.h @@ -16,8 +16,8 @@ struct cmark_parser { struct cmark_node* root; struct cmark_node* current; int line_number; - strbuf *curline; - strbuf *linebuf; + cmark_strbuf *curline; + cmark_strbuf *linebuf; }; #ifdef __cplusplus |