Update comments.
authorBruno Haible <bruno@clisp.org>
Sat, 13 Nov 2010 12:58:12 +0000 (13:58 +0100)
committerBruno Haible <bruno@clisp.org>
Sat, 13 Nov 2010 12:58:12 +0000 (13:58 +0100)
* lib/unistr/u8-check.c: Update file name in comments.
* lib/unistr/u8-mblen.c: Likewise.
* lib/unistr/u8-prev.c: Likewise.
* lib/unistr/u8-strmblen.c: Likewise.
* lib/unistr/u8-strmbtouc.c: Likewise.

ChangeLog
lib/unistr/u8-check.c
lib/unistr/u8-mblen.c
lib/unistr/u8-prev.c
lib/unistr/u8-strmblen.c
lib/unistr/u8-strmbtouc.c

index bc79dcb234efdd826f79e2b2ec20e9bc5dca41d6..f3955b547e567cc8a33e45264f2101b3ef998f03 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2010-11-13  Bruno Haible  <bruno@clisp.org>
+
+       Update comments.
+       * lib/unistr/u8-check.c: Update file name in comments.
+       * lib/unistr/u8-mblen.c: Likewise.
+       * lib/unistr/u8-prev.c: Likewise.
+       * lib/unistr/u8-strmblen.c: Likewise.
+       * lib/unistr/u8-strmbtouc.c: Likewise.
+
 2010-11-13  Jim Meyering  <meyering@redhat.com>
 
        tests: avoid test failure on Solaris 10 due to lack of PATH export
index 368042b0cacdf1f4488b613a31f63f61302d723e..21e877520881c113c211e13dacd863f8817f2d55 100644 (file)
@@ -27,7 +27,7 @@ u8_check (const uint8_t *s, size_t n)
 
   while (s < s_end)
     {
-      /* Keep in sync with unistr.h and utf8-ucs4.c.  */
+      /* Keep in sync with unistr.h and u8-mbtouc-aux.c.  */
       uint8_t c = *s;
 
       if (c < 0x80)
index f6a202710dba2cfb718418b8915c1af3fb74a299..7491963623653c9397cd00fe8ab5a9f63b567d39 100644 (file)
@@ -26,7 +26,7 @@ u8_mblen (const uint8_t *s, size_t n)
 {
   if (n > 0)
     {
-      /* Keep in sync with unistr.h and utf8-ucs4.c.  */
+      /* Keep in sync with unistr.h and u8-mbtouc-aux.c.  */
       uint8_t c = *s;
 
       if (c < 0x80)
index 97a27f55750aa6a51163af72c473e0c21fcf2357..47f89b470bc2c541357607425732f5b625ea90ca 100644 (file)
@@ -23,7 +23,7 @@
 const uint8_t *
 u8_prev (ucs4_t *puc, const uint8_t *s, const uint8_t *start)
 {
-  /* Keep in sync with unistr.h and utf8-ucs4.c.  */
+  /* Keep in sync with unistr.h and u8-mbtouc-aux.c.  */
   if (s != start)
     {
       uint8_t c_1 = s[-1];
index 52242c5892b43b05e3e4b4be3af071cb6e7ebc2b..eac3905a268c20a0ce525d07dba588994f9a90f6 100644 (file)
@@ -24,7 +24,7 @@
 int
 u8_strmblen (const uint8_t *s)
 {
-  /* Keep in sync with unistr.h and utf8-ucs4.c.  */
+  /* Keep in sync with unistr.h and u8-mbtouc-aux.c.  */
   uint8_t c = *s;
 
   if (c < 0x80)
index 67016c65c8adc3136e5599a611e4e5a16f1dcb76..d55035641ff281c228234cca08f39deb0a2cd8c5 100644 (file)
@@ -24,7 +24,7 @@
 int
 u8_strmbtouc (ucs4_t *puc, const uint8_t *s)
 {
-  /* Keep in sync with unistr.h and utf8-ucs4.c.  */
+  /* Keep in sync with unistr.h and u8-mbtouc-aux.c.  */
   uint8_t c = *s;
 
   if (c < 0x80)