summaryrefslogtreecommitdiff
path: root/src/utf8.c
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2014-12-29 22:31:17 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2014-12-29 22:31:17 -0800
commit9c5d074b0067b564f230b3770b2026afb9bb6998 (patch)
treef399a256c4b3c05d9889df8d2c691b80329785cd /src/utf8.c
parentdee580425077fd177f49cddf64a157af032fbb3f (diff)
Added cmark_ prefix to functions in cmark_ctype.
Diffstat (limited to 'src/utf8.c')
-rw-r--r--src/utf8.c2
1 files changed, 1 insertions, 1 deletions
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 ||