From 9c5d074b0067b564f230b3770b2026afb9bb6998 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Mon, 29 Dec 2014 22:31:17 -0800 Subject: Added cmark_ prefix to functions in cmark_ctype. --- src/utf8.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/utf8.c') diff --git a/src/utf8.c b/src/utf8.c index 50d8834..ffb050d 100644 --- a/src/utf8.c +++ b/src/utf8.c @@ -269,7 +269,7 @@ int utf8proc_is_space(int32_t uc) // matches anything in the P[cdefios] classes. int utf8proc_is_punctuation(int32_t uc) { - return ((uc < 128 && ispunct((char)uc)) || + return ((uc < 128 && cmark_ispunct((char)uc)) || uc == 161 || uc == 167 || uc == 171 || -- cgit v1.2.3