Update.
authorUlrich Drepper <drepper@redhat.com>
Wed, 7 Jun 2000 17:20:28 +0000 (17:20 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 7 Jun 2000 17:20:28 +0000 (17:20 +0000)
2000-06-07  Ulrich Drepper  <drepper@redhat.com>

* locale/programs/charmap.c: Allow string arguments for
code_set_name and repertoiremap.

ChangeLog
locale/programs/charmap.c

index aa2df2b..555199c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-06-07  Ulrich Drepper  <drepper@redhat.com>
+
+       * locale/programs/charmap.c: Allow string arguments for
+       code_set_name and repertoiremap.
+
 2000-06-07  Andreas Jaeger  <aj@suse.de>
 
        * elf/Makefile: Build ldconfig only when building shared libraries.
index 3ccebca..dec09a6 100644 (file)
@@ -155,6 +155,8 @@ charmap_read (const char *filename)
                        char junk[BUFSIZ];
 
                        if (fscanf (fp, " <code_set_name> %as", &name) == 1
+                           || (fscanf (fp, " <code_set_name> \"%as\"", &name)
+                               == 1)
                            || fscanf (fp, "%% alias %as", &name) == 1)
                          {
                            if (strcasecmp (name, filename) == 0)
@@ -317,7 +319,7 @@ parse_charmap (struct linereader *cmfile)
            {
            case tok_code_set_name:
            case tok_repertoiremap:
-             if (arg->tok != tok_ident)
+             if (arg->tok != tok_ident && arg->tok != tok_string)
                {
                badarg:
                  lr_error (cmfile, _("syntax error in prolog: %s"),