From f16ddcae6938f7feda331c5fabc02a9539978bcb Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Fri, 29 Oct 2010 22:11:30 +0200 Subject: s3:lib/charcnv: clarify comments in next_codepoint_ext() (giving the unicod U+ notation of the codepoints referred to in the comments) --- source3/lib/charcnv.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source3/lib/charcnv.c b/source3/lib/charcnv.c index 57e0f3a789..3b6dfc5099 100644 --- a/source3/lib/charcnv.c +++ b/source3/lib/charcnv.c @@ -1827,7 +1827,7 @@ codepoint_t next_codepoint_ext(const char *str, charset_t src_charset, /* * We assume that no multi-byte character can take more than - * 5 bytes. This is OK as we only support codepoints up to 1M + * 5 bytes. This is OK as we only support codepoints up to 1M (U+100000) */ ilen_orig = strnlen(str, 5); @@ -1843,7 +1843,7 @@ codepoint_t next_codepoint_ext(const char *str, charset_t src_charset, /* * This looks a little strange, but it is needed to cope - * with codepoints above 64k which are encoded as per RFC2781. + * with codepoints above 64k (U+10000) which are encoded as per RFC2781. */ olen = 2; outbuf = (char *)buf; -- cgit