diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-08-06 09:34:39 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-08-06 09:34:39 -0700 |
commit | 1f6e14ad253ab3758f507e177b131b8e487076c0 (patch) | |
tree | 175729d6e58e3da3d2fdcd99c69d7dbd209e7a0d /src/blocks.c | |
parent | d9f5a3fe2555ecf9d64e392d8febf551c60ddbe5 (diff) | |
parent | 2f393322635cbc1eea0fd75ac17c00d01fe42176 (diff) |
Merge pull request #70 from kainjow/master
Prefix utf8proc functions to avoid conflict with existing library
Diffstat (limited to 'src/blocks.c')
-rwxr-xr-x[-rw-r--r--] | src/blocks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/blocks.c b/src/blocks.c index 9a8a9a6..f1e3a7a 100644..100755 --- a/src/blocks.c +++ b/src/blocks.c @@ -594,7 +594,7 @@ static void S_process_line(cmark_parser *parser, const unsigned char *buffer, bool maybe_lazy; if (parser->options & CMARK_OPT_VALIDATE_UTF8) { - utf8proc_check(parser->curline, buffer, bytes); + cmark_utf8proc_check(parser->curline, buffer, bytes); } else { cmark_strbuf_put(parser->curline, buffer, bytes); } |