summaryrefslogtreecommitdiff
path: root/src/blocks.c
diff options
context:
space:
mode:
authorKevin Wojniak <kainjow@kainjow.com>2015-08-06 09:07:23 -0700
committerKevin Wojniak <kainjow@kainjow.com>2015-08-06 09:07:23 -0700
commit2f393322635cbc1eea0fd75ac17c00d01fe42176 (patch)
tree175729d6e58e3da3d2fdcd99c69d7dbd209e7a0d /src/blocks.c
parentd9f5a3fe2555ecf9d64e392d8febf551c60ddbe5 (diff)
Prefix utf8proc functions to avoid conflict with existing library
Diffstat (limited to 'src/blocks.c')
-rwxr-xr-x[-rw-r--r--]src/blocks.c2
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);
}