]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - locale/programs/ld-address.c
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / locale / programs / ld-address.c
index 13ff792e13b58c4bcf6883a3cf7140a9db6b1078..0597e115398495ad14946355acc4485a571c55ef 100644 (file)
@@ -1,21 +1,19 @@
-/* Copyright (C) 1998, 1999 Free Software Foundation, Inc.
+/* Copyright (C) 1998-2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
 
-   The GNU C Library is free software; you can redistribute it and/or
-   modify it under the terms of the GNU Library General Public License as
-   published by the Free Software Foundation; either version 2 of the
-   License, or (at your option) any later version.
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published
+   by the Free Software Foundation; version 2 of the License, or
+   (at your option) any later version.
 
-   The GNU C Library is distributed in the hope that it will be useful,
+   This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
-   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-   Library General Public License for more details.
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
 
-   You should have received a copy of the GNU Library General Public
-   License along with the GNU C Library; see the file COPYING.LIB.  If not,
-   write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-   Boston, MA 02111-1307, USA.  */
+   You should have received a copy of the GNU General Public License
+   along with this program; if not, see <http://www.gnu.org/licenses/>.  */
 
 #ifdef HAVE_CONFIG_H
 # include <config.h>
 #include <error.h>
 #include <langinfo.h>
 #include <string.h>
+#include <stdint.h>
 #include <sys/uio.h>
 
 #include <assert.h>
 
+#include "localedef.h"
 #include "localeinfo.h"
 #include "locfile.h"
 
 
 static struct
 {
-  const char ab2[2];
-  const char ab3[3];
+  const char ab2[3];
+  const char ab3[4];
   uint32_t num;
 } iso3166[] =
 {
@@ -48,13 +48,17 @@ static struct
 
 static struct
 {
-  const char ab[2];
-  const char term[3];
-  const char lib[3];
+  const char ab[3];
+  const char term[4];
+  const char lib[4];
 } iso639[] =
 {
 #define DEFINE_LANGUAGE_CODE(Name, Ab, Term, Lib) \
   { #Ab, #Term, #Lib },
+#define DEFINE_LANGUAGE_CODE3(Name, Term, Lib) \
+  { "", #Term, #Lib },
+#define DEFINE_LANGUAGE_CODE2(Name, Term) \
+  { "", #Term, "" },
 #include "iso-639.def"
 };
 
@@ -95,7 +99,7 @@ address_startup (struct linereader *lr, struct localedef_t *locale,
 
 
 void
-address_finish (struct localedef_t *locale, struct charmap_t *charmap)
+address_finish (struct localedef_t *locale, const struct charmap_t *charmap)
 {
   struct locale_address_t *address = locale->categories[LC_ADDRESS].address;
   size_t cnt;
@@ -127,7 +131,9 @@ address_finish (struct localedef_t *locale, struct charmap_t *charmap)
         empty one.  */
       if (address == NULL)
        {
-         error (0, 0, _("No definition for %s category found"), "LC_ADDRESS");
+         if (! be_quiet)
+           WITH_CUR_LOCALE (error (0, 0, _("\
+No definition for %s category found"), "LC_ADDRESS"));
          address_startup (NULL, locale, 0);
          address = locale->categories[LC_ADDRESS].address;
          nothing = 1;
@@ -137,8 +143,8 @@ address_finish (struct localedef_t *locale, struct charmap_t *charmap)
   if (address->postal_fmt == NULL)
     {
       if (! nothing)
-       error (0, 0, _("%s: field `%s' not defined"),
-              "LC_ADDRESS", "postal_fmt");
+       WITH_CUR_LOCALE (error (0, 0, _("%s: field `%s' not defined"),
+                               "LC_ADDRESS", "postal_fmt"));
       /* Use as the default value the value of the i18n locale.  */
       address->postal_fmt = "%a%N%f%N%d%N%b%N%s %h %e %r%N%C-%z %T%N%c%N";
     }
@@ -149,8 +155,8 @@ address_finish (struct localedef_t *locale, struct charmap_t *charmap)
       const char *cp = address->postal_fmt;
 
       if (*cp == '\0')
-       error (0, 0, _("%s: field `%s' must not be empty"),
-              "LC_ADDRESS", "postal_fmt");
+       WITH_CUR_LOCALE (error (0, 0, _("%s: field `%s' must not be empty"),
+                               "LC_ADDRESS", "postal_fmt"));
       else
        while (*cp != '\0')
          {
@@ -159,11 +165,11 @@ address_finish (struct localedef_t *locale, struct charmap_t *charmap)
                if (*++cp == 'R')
                  /* Romanize-flag.  */
                  ++cp;
-               if (strchr ("afdbshNtreCzTc%", *cp) == NULL)
+               if (strchr ("afdbshNtreCzTSc%", *cp) == NULL)
                  {
-                   error (0, 0, _("\
+                   WITH_CUR_LOCALE (error (0, 0, _("\
 %s: invalid escape `%%%c' sequence in field `%s'"),
-                          "LC_ADDRESS", *cp, "postal_fmt");
+                                           "LC_ADDRESS", *cp, "postal_fmt"));
                    break;
                  }
              }
@@ -175,7 +181,8 @@ address_finish (struct localedef_t *locale, struct charmap_t *charmap)
   if (address->cat == NULL)                                                  \
     {                                                                        \
       if (verbose && ! nothing)                                                      \
-       error (0, 0, _("%s: field `%s' not defined"), "LC_ADDRESS", #cat);    \
+       WITH_CUR_LOCALE (error (0, 0, _("%s: field `%s' not defined"),        \
+                               "LC_ADDRESS", #cat));                         \
       address->cat = "";                                                     \
     }
 
@@ -192,16 +199,16 @@ address_finish (struct localedef_t *locale, struct charmap_t *charmap)
   if (address->lang_term == NULL)
     {
       if (verbose && ! nothing)
-       error (0, 0, _("%s: field `%s' not defined"), "LC_ADDRESS",
-              "lang_term");
+       WITH_CUR_LOCALE (error (0, 0, _("%s: field `%s' not defined"),
+                               "LC_ADDRESS", "lang_term"));
       address->lang_term = "";
       cnt = sizeof (iso639) / sizeof (iso639[0]);
     }
   else if (address->lang_term[0] == '\0')
     {
       if (verbose)
-       error (0, 0, _("%s: field `%s' must not be empty"),
-              "LC_ADDRESS", "lang_term");
+       WITH_CUR_LOCALE (error (0, 0, _("%s: field `%s' must not be empty"),
+                               "LC_ADDRESS", "lang_term"));
       cnt = sizeof (iso639) / sizeof (iso639[0]);
     }
   else
@@ -211,22 +218,35 @@ address_finish (struct localedef_t *locale, struct charmap_t *charmap)
        if (strcmp (address->lang_term, iso639[cnt].term) == 0)
          break;
       if (cnt == sizeof (iso639) / sizeof (iso639[0]))
-       error (0, 0, _("\
+       WITH_CUR_LOCALE (error (0, 0, _("\
 %s: terminology language code `%s' not defined"),
-              "LC_ADDRESS", address->lang_term);
+                               "LC_ADDRESS", address->lang_term));
     }
 
   if (address->lang_ab == NULL)
     {
-      if (verbose && ! nothing)
-       error (0, 0, _("%s: field `%s' not defined"), "LC_ADDRESS", "lang_ab");
+      if ((cnt == sizeof (iso639) / sizeof (iso639[0])
+          || iso639[cnt].ab[0] != '\0')
+         && verbose && ! nothing)
+       WITH_CUR_LOCALE (error (0, 0, _("%s: field `%s' not defined"),
+                               "LC_ADDRESS", "lang_ab"));
       address->lang_ab = "";
     }
   else if (address->lang_ab[0] == '\0')
     {
-      if (verbose)
-       error (0, 0, _("%s: field `%s' must not be empty"),
-              "LC_ADDRESS", "lang_ab");
+      if ((cnt == sizeof (iso639) / sizeof (iso639[0])
+          || iso639[cnt].ab[0] != '\0')
+         && verbose)
+       WITH_CUR_LOCALE (error (0, 0, _("%s: field `%s' must not be empty"),
+                               "LC_ADDRESS", "lang_ab"));
+    }
+  else if (cnt < sizeof (iso639) / sizeof (iso639[0])
+          && iso639[cnt].ab[0] == '\0')
+    {
+      WITH_CUR_LOCALE (error (0, 0, _("%s: field `%s' must not be defined"),
+                             "LC_ADDRESS", "lang_ab"));
+
+      address->lang_ab = "";
     }
   else
     {
@@ -237,15 +257,16 @@ address_finish (struct localedef_t *locale, struct charmap_t *charmap)
            if (strcmp (address->lang_ab, iso639[cnt].ab) == 0)
              break;
          if (cnt == sizeof (iso639) / sizeof (iso639[0]))
-           error (0, 0, _("\
+           WITH_CUR_LOCALE (error (0, 0, _("\
 %s: language abbreviation `%s' not defined"),
-                  "LC_ADDRESS", address->lang_ab);
+                                   "LC_ADDRESS", address->lang_ab));
        }
       else
-       if (strcmp (iso639[cnt].ab, address->lang_ab) != 0)
-         error (0, 0, _("\
+       if (strcmp (iso639[cnt].ab, address->lang_ab) != 0
+           && iso639[cnt].ab[0] != '\0')
+         WITH_CUR_LOCALE (error (0, 0, _("\
 %s: `%s' value does not match `%s' value"),
-                "LC_ADDRESS", "lang_ab", "lang_term");
+                                 "LC_ADDRESS", "lang_ab", "lang_term"));
     }
 
   if (address->lang_lib == NULL)
@@ -254,8 +275,8 @@ address_finish (struct localedef_t *locale, struct charmap_t *charmap)
   else if (address->lang_lib[0] == '\0')
     {
       if (verbose)
-       error (0, 0, _("%s: field `%s' must not be empty"),
-              "LC_ADDRESS", "lang_lib");
+       WITH_CUR_LOCALE (error (0, 0, _("%s: field `%s' must not be empty"),
+                               "LC_ADDRESS", "lang_lib"));
     }
   else
     {
@@ -265,22 +286,22 @@ address_finish (struct localedef_t *locale, struct charmap_t *charmap)
            if (strcmp (address->lang_lib, iso639[cnt].lib) == 0)
              break;
          if (cnt == sizeof (iso639) / sizeof (iso639[0]))
-           error (0, 0, _("\
+           WITH_CUR_LOCALE (error (0, 0, _("\
 %s: language abbreviation `%s' not defined"),
-                  "LC_ADDRESS", address->lang_lib);
+                                   "LC_ADDRESS", address->lang_lib));
        }
       else
        if (strcmp (iso639[cnt].ab, address->lang_ab) != 0)
-         error (0, 0, _("\
+         WITH_CUR_LOCALE (error (0, 0, _("\
 %s: `%s' value does not match `%s' value"), "LC_ADDRESS", "lang_lib",
-                helper == 1 ? "lang_term" : "lang_ab");
+                                 helper == 1 ? "lang_term" : "lang_ab"));
     }
 
   if (address->country_num == 0)
     {
       if (verbose && ! nothing)
-       error (0, 0, _("%s: field `%s' not defined"),
-              "LC_ADDRESS", "country_num");
+       WITH_CUR_LOCALE (error (0, 0, _("%s: field `%s' not defined"),
+                               "LC_ADDRESS", "country_num"));
       cnt = sizeof (iso3166) / sizeof (iso3166[0]);
     }
   else
@@ -290,147 +311,82 @@ address_finish (struct localedef_t *locale, struct charmap_t *charmap)
          break;
 
       if (cnt == sizeof (iso3166) / sizeof (iso3166[0]))
-       error (0, 0, _("\
+       WITH_CUR_LOCALE (error (0, 0, _("\
 %s: numeric country code `%d' not valid"),
-              "LC_ADDRESS", address->country_num);
+                               "LC_ADDRESS", address->country_num));
     }
 
   if (address->country_ab2 == NULL)
     {
       if (verbose && ! nothing)
-       error (0, 0, _("%s: field `%s' not defined"),
-              "LC_ADDRESS", "country_ab2");
+       WITH_CUR_LOCALE (error (0, 0, _("%s: field `%s' not defined"),
+                               "LC_ADDRESS", "country_ab2"));
       address->country_ab2 = "  ";
     }
   else if (cnt != sizeof (iso3166) / sizeof (iso3166[0])
           && strcmp (address->country_ab2, iso3166[cnt].ab2) != 0)
-    error (0, 0, _("%s: `%s' value does not match `%s' value"),
-          "LC_ADDRESS", "country_ab2", "country_num");
+    WITH_CUR_LOCALE (error (0, 0,
+                           _("%s: `%s' value does not match `%s' value"),
+                           "LC_ADDRESS", "country_ab2", "country_num"));
 
   if (address->country_ab3 == NULL)
     {
       if (verbose && ! nothing)
-       error (0, 0, _("%s: field `%s' not defined"),
-              "LC_ADDRESS", "country_ab3");
+       WITH_CUR_LOCALE (error (0, 0, _("%s: field `%s' not defined"),
+                               "LC_ADDRESS", "country_ab3"));
       address->country_ab3 = "   ";
     }
   else if (cnt != sizeof (iso3166) / sizeof (iso3166[0])
           && strcmp (address->country_ab3, iso3166[cnt].ab3) != 0)
-    error (0, 0, _("%s: `%s' value does not match `%s' value"),
-          "LC_ADDRESS", "country_ab3", "country_num");
+    WITH_CUR_LOCALE (error (0, 0, _("\
+%s: `%s' value does not match `%s' value"),
+                           "LC_ADDRESS", "country_ab3", "country_num"));
 }
 
 
 void
-address_output (struct localedef_t *locale, struct charmap_t *charmap,
+address_output (struct localedef_t *locale, const struct charmap_t *charmap,
                const char *output_path)
 {
   struct locale_address_t *address = locale->categories[LC_ADDRESS].address;
-  struct iovec iov[2 + _NL_ITEM_INDEX (_NL_NUM_LC_ADDRESS)];
-  struct locale_file data;
-  uint32_t idx[_NL_ITEM_INDEX (_NL_NUM_LC_ADDRESS)];
-  size_t cnt = 0;
-
-  data.magic = LIMAGIC (LC_ADDRESS);
-  data.n = _NL_ITEM_INDEX (_NL_NUM_LC_ADDRESS);
-  iov[cnt].iov_base = (void *) &data;
-  iov[cnt].iov_len = sizeof (data);
-  ++cnt;
-
-  iov[cnt].iov_base = (void *) idx;
-  iov[cnt].iov_len = sizeof (idx);
-  ++cnt;
-
-  idx[cnt - 2] = iov[0].iov_len + iov[1].iov_len;
-  iov[cnt].iov_base = (void *) address->postal_fmt;
-  iov[cnt].iov_len = strlen (iov[cnt].iov_base) + 1;
-  ++cnt;
-
-  idx[cnt - 2] = idx[cnt - 3] + iov[cnt - 1].iov_len;
-  iov[cnt].iov_base = (void *) address->country_name;
-  iov[cnt].iov_len = strlen (iov[cnt].iov_base) + 1;
-  ++cnt;
-
-  idx[cnt - 2] = idx[cnt - 3] + iov[cnt - 1].iov_len;
-  iov[cnt].iov_base = (void *) address->country_post;
-  iov[cnt].iov_len = strlen (iov[cnt].iov_base) + 1;
-  ++cnt;
-
-  idx[cnt - 2] = idx[cnt - 3] + iov[cnt - 1].iov_len;
-  iov[cnt].iov_base = (void *) address->country_ab2;
-  iov[cnt].iov_len = strlen (iov[cnt].iov_base) + 1;
-  ++cnt;
-
-  idx[cnt - 2] = idx[cnt - 3] + iov[cnt - 1].iov_len;
-  iov[cnt].iov_base = (void *) address->country_ab3;
-  iov[cnt].iov_len = strlen (iov[cnt].iov_base) + 1;
-  ++cnt;
-
-  idx[cnt - 2] = idx[cnt - 3] + iov[cnt - 1].iov_len;
-  iov[cnt].iov_base = (void *) address->country_car;
-  iov[cnt].iov_len = strlen (iov[cnt].iov_base) + 1;
-  ++cnt;
-
-  idx[cnt - 2] = idx[cnt - 3] + iov[cnt - 1].iov_len;
-  iov[cnt].iov_base = (void *) &address->country_num;
-  iov[cnt].iov_len = sizeof (uint32_t);
-  ++cnt;
-
-  idx[cnt - 2] = idx[cnt - 3] + iov[cnt - 1].iov_len;
-  iov[cnt].iov_base = (void *) address->country_isbn;
-  iov[cnt].iov_len = strlen (iov[cnt].iov_base) + 1;
-  ++cnt;
-
-  idx[cnt - 2] = idx[cnt - 3] + iov[cnt - 1].iov_len;
-  iov[cnt].iov_base = (void *) address->lang_name;
-  iov[cnt].iov_len = strlen (iov[cnt].iov_base) + 1;
-  ++cnt;
-
-  idx[cnt - 2] = idx[cnt - 3] + iov[cnt - 1].iov_len;
-  iov[cnt].iov_base = (void *) address->lang_ab;
-  iov[cnt].iov_len = strlen (iov[cnt].iov_base) + 1;
-  ++cnt;
-
-  idx[cnt - 2] = idx[cnt - 3] + iov[cnt - 1].iov_len;
-  iov[cnt].iov_base = (void *) address->lang_term;
-  iov[cnt].iov_len = strlen (iov[cnt].iov_base) + 1;
-  ++cnt;
-
-  idx[cnt - 2] = idx[cnt - 3] + iov[cnt - 1].iov_len;
-  iov[cnt].iov_base = (void *) address->lang_lib;
-  iov[cnt].iov_len = strlen (iov[cnt].iov_base) + 1;
-  ++cnt;
-
-  assert (cnt == 2 + _NL_ITEM_INDEX (_NL_NUM_LC_ADDRESS));
-
-  write_locale_data (output_path, "LC_ADDRESS",
-                    2 + _NL_ITEM_INDEX (_NL_NUM_LC_ADDRESS), iov);
+  struct locale_file file;
+
+  init_locale_data (&file, _NL_ITEM_INDEX (_NL_NUM_LC_ADDRESS));
+  add_locale_string (&file, address->postal_fmt);
+  add_locale_string (&file, address->country_name);
+  add_locale_string (&file, address->country_post);
+  add_locale_string (&file, address->country_ab2);
+  add_locale_string (&file, address->country_ab3);
+  add_locale_string (&file, address->country_car);
+  add_locale_uint32 (&file, address->country_num);
+  add_locale_string (&file, address->country_isbn);
+  add_locale_string (&file, address->lang_name);
+  add_locale_string (&file, address->lang_ab);
+  add_locale_string (&file, address->lang_term);
+  add_locale_string (&file, address->lang_lib);
+  add_locale_string (&file, charmap->code_set_name);
+  write_locale_data (output_path, LC_ADDRESS, "LC_ADDRESS", &file);
 }
 
 
 /* The parser for the LC_ADDRESS section of the locale definition.  */
 void
 address_read (struct linereader *ldfile, struct localedef_t *result,
-             struct charmap_t *charmap, const char *repertoire_name,
+             const struct charmap_t *charmap, const char *repertoire_name,
              int ignore_content)
 {
-  struct repertoire_t *repertoire = NULL;
   struct locale_address_t *address;
   struct token *now;
   struct token *arg;
   enum token_t nowtok;
 
-  /* Get the repertoire we have to use.  */
-  if (repertoire_name != NULL)
-    repertoire = repertoire_read (repertoire_name);
-
   /* The rest of the line containing `LC_ADDRESS' must be free.  */
   lr_ignore_rest (ldfile, 1);
 
 
   do
     {
-      now = lr_token (ldfile, charmap, NULL);
+      now = lr_token (ldfile, charmap, result, NULL, verbose);
       nowtok = now->tok;
     }
   while (nowtok == tok_eol);
@@ -438,7 +394,7 @@ address_read (struct linereader *ldfile, struct localedef_t *result,
   /* If we see `copy' now we are almost done.  */
   if (nowtok == tok_copy)
     {
-      handle_copy (ldfile, charmap, repertoire, result, tok_lc_address,
+      handle_copy (ldfile, charmap, repertoire_name, result, tok_lc_address,
                   LC_ADDRESS, "LC_ADDRESS", ignore_content);
       return;
     }
@@ -456,7 +412,7 @@ address_read (struct linereader *ldfile, struct localedef_t *result,
       /* Ignore empty lines.  */
       if (nowtok == tok_eol)
        {
-         now = lr_token (ldfile, charmap, NULL);
+         now = lr_token (ldfile, charmap, result, NULL, verbose);
          nowtok = now->tok;
          continue;
        }
@@ -473,7 +429,7 @@ address_read (struct linereader *ldfile, struct localedef_t *result,
              break;                                                          \
            }                                                                 \
                                                                              \
-         arg = lr_token (ldfile, charmap, NULL);                             \
+         arg = lr_token (ldfile, charmap, result, NULL, verbose);            \
          if (arg->tok != tok_string)                                         \
            goto err_label;                                                   \
          if (address->cat != NULL)                                           \
@@ -495,12 +451,49 @@ address_read (struct linereader *ldfile, struct localedef_t *result,
          STR_ELEM (country_ab2);
          STR_ELEM (country_ab3);
          STR_ELEM (country_car);
-         STR_ELEM (country_isbn);
          STR_ELEM (lang_name);
          STR_ELEM (lang_ab);
          STR_ELEM (lang_term);
          STR_ELEM (lang_lib);
 
+#define INT_STR_ELEM(cat) \
+       case tok_##cat:                                                       \
+         /* Ignore the rest of the line if we don't need the input of        \
+            this line.  */                                                   \
+         if (ignore_content)                                                 \
+           {                                                                 \
+             lr_ignore_rest (ldfile, 0);                                     \
+             break;                                                          \
+           }                                                                 \
+                                                                             \
+         arg = lr_token (ldfile, charmap, result, NULL, verbose);            \
+         if (arg->tok != tok_string && arg->tok != tok_number)               \
+           goto err_label;                                                   \
+         if (address->cat != NULL)                                           \
+           lr_error (ldfile, _("\
+%s: field `%s' declared more than once"), "LC_ADDRESS", #cat);               \
+         else if (!ignore_content && arg->tok == tok_string                  \
+                  && arg->val.str.startmb == NULL)                           \
+           {                                                                 \
+             lr_error (ldfile, _("\
+%s: unknown character in field `%s'"), "LC_ADDRESS", #cat);                  \
+             address->cat = "";                                              \
+           }                                                                 \
+         else if (!ignore_content)                                           \
+           {                                                                 \
+             if (arg->tok == tok_string)                                     \
+               address->cat = arg->val.str.startmb;                          \
+             else                                                            \
+               {                                                             \
+                 char *numbuf = (char *) xmalloc (11);                       \
+                 snprintf (numbuf, 11, "%ld", arg->val.num);                 \
+                 address->cat = numbuf;                                      \
+               }                                                             \
+           }                                                                 \
+         break
+
+         INT_STR_ELEM (country_isbn);
+
 #define INT_ELEM(cat) \
        case tok_##cat:                                                       \
          /* Ignore the rest of the line if we don't need the input of        \
@@ -511,7 +504,7 @@ address_read (struct linereader *ldfile, struct localedef_t *result,
              break;                                                          \
            }                                                                 \
                                                                              \
-         arg = lr_token (ldfile, charmap, NULL);                             \
+         arg = lr_token (ldfile, charmap, result, NULL, verbose);            \
          if (arg->tok != tok_number)                                         \
            goto err_label;                                                   \
          else if (address->cat != 0)                                         \
@@ -525,7 +518,7 @@ address_read (struct linereader *ldfile, struct localedef_t *result,
 
        case tok_end:
          /* Next we assume `LC_ADDRESS'.  */
-         arg = lr_token (ldfile, charmap, NULL);
+         arg = lr_token (ldfile, charmap, result, NULL, verbose);
          if (arg->tok == tok_eof)
            break;
          if (arg->tok == tok_eol)
@@ -543,7 +536,7 @@ address_read (struct linereader *ldfile, struct localedef_t *result,
        }
 
       /* Prepare for the next round.  */
-      now = lr_token (ldfile, charmap, NULL);
+      now = lr_token (ldfile, charmap, result, NULL, verbose);
       nowtok = now->tok;
     }