diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-12-29 22:31:17 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-12-29 22:31:17 -0800 |
commit | 9c5d074b0067b564f230b3770b2026afb9bb6998 (patch) | |
tree | f399a256c4b3c05d9889df8d2c691b80329785cd /src/utf8.c | |
parent | dee580425077fd177f49cddf64a157af032fbb3f (diff) |
Added cmark_ prefix to functions in cmark_ctype.
Diffstat (limited to 'src/utf8.c')
-rw-r--r-- | src/utf8.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 || |