summaryrefslogtreecommitdiff
path: root/src/sbuf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sbuf.c')
-rw-r--r--src/sbuf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sbuf.c b/src/sbuf.c
index ceac839..354fc3d 100644
--- a/src/sbuf.c
+++ b/src/sbuf.c
@@ -156,10 +156,10 @@ sbuf_utf8_nconcat (struct sbuf *b, const char *s, int width)
len = nchars = 0;
while (s[len] != '\0' && nchars < width)
{
- if (RP_IS_UTF8_START (s[len]))
+ if (isu8start (s[len]))
do
len++;
- while (RP_IS_UTF8_CONT (s[len]));
+ while (isu8cont (s[len]));
else
len++;
nchars++;