From 2f393322635cbc1eea0fd75ac17c00d01fe42176 Mon Sep 17 00:00:00 2001 From: Kevin Wojniak Date: Thu, 6 Aug 2015 09:07:23 -0700 Subject: Prefix utf8proc functions to avoid conflict with existing library --- src/blocks.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 src/blocks.c (limited to 'src/blocks.c') diff --git a/src/blocks.c b/src/blocks.c old mode 100644 new mode 100755 index 9a8a9a6..f1e3a7a --- 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); } -- cgit v1.2.3