]> sourceware.org Git - newlib-cygwin.git/commitdiff
* libc/locale/locale.c (loadlocale): Change comments to refer to
authorCorinna Vinschen <corinna@vinschen.de>
Sun, 17 Jan 2010 14:57:32 +0000 (14:57 +0000)
committerCorinna Vinschen <corinna@vinschen.de>
Sun, 17 Jan 2010 14:57:32 +0000 (14:57 +0000)
ISO 639-3 rather than 639-2.

newlib/ChangeLog
newlib/libc/locale/locale.c

index 1697e7490ccbed97c3945e6cc6c5f83d2edf2161..e47bb7bc683ef0551fcb3b641f102457ad47ca11 100644 (file)
@@ -1,3 +1,8 @@
+2010-01-17  Corinna Vinschen  <corinna@vinschen.de>
+
+       * libc/locale/locale.c (loadlocale): Change comments to refer to
+       ISO 639-3 rather than 639-2.
+
 2010-01-17  Corinna Vinschen  <corinna@vinschen.de>
 
        * libc/locale/locale.c (loadlocale): Allow three character
index 8eb94309440b57c65c047020dc9ed850bcfc9576..1349927bfb9ff6ab96fbf58cb2f3f91fff1fdbe0 100644 (file)
@@ -52,7 +52,7 @@ the form
   language[_TERRITORY][.charset][@@modifier]
 
 <<"language">> is a two character string per ISO 639, or, if not available
-for a given language, a three character string per ISO 639-2.
+for a given language, a three character string per ISO 639-3.
 <<"TERRITORY">> is a country code per ISO 3166.  For <<"charset">> and
 <<"modifier">> see below.
 
@@ -475,7 +475,7 @@ loadlocale(struct _reent *p, int category)
          || c[1] < 'a' || c[1] > 'z')
        return NULL;
       c += 2;
-      /* Allow three character Language per ISO 639-2 */
+      /* Allow three character Language per ISO 639-3 */
       if (c[0] >= 'a' && c[0] <= 'z')
        ++c;
       if (c[0] == '_')
This page took 0.052589 seconds and 5 git commands to generate.