mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-08 18:30:18 +00:00
Update.
2000-01-26 Ulrich Drepper <drepper@cygnus.com> * locale/programs/ld-collate.c (check_duplicate): Fix printing of error messages. (collate_read): Remove unnecessary `if'.
This commit is contained in:
parent
4e2e99997a
commit
4b1c1a6ffa
@ -1,3 +1,9 @@
|
||||
2000-01-26 Ulrich Drepper <drepper@cygnus.com>
|
||||
|
||||
* locale/programs/ld-collate.c (check_duplicate): Fix printing of error
|
||||
messages.
|
||||
(collate_read): Remove unnecessary `if'.
|
||||
|
||||
2000-01-25 Ulrich Drepper <drepper@cygnus.com>
|
||||
|
||||
* libio/fileops.c (_IO_new_file_open): Recognize ,ccs= in mode string
|
||||
|
@ -342,26 +342,29 @@ check_duplicate (struct linereader *ldfile, struct locale_collate_t *collate,
|
||||
|
||||
if (find_entry (&charmap->char_table, symbol, symbol_len, &ignore) == 0)
|
||||
{
|
||||
lr_error (ldfile, _("`%s' already defined in charmap"), symbol);
|
||||
lr_error (ldfile, _("`%.*s' already defined in charmap"),
|
||||
(int) symbol_len, symbol);
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (find_entry (&repertoire->char_table, symbol, symbol_len, &ignore) == 0)
|
||||
{
|
||||
lr_error (ldfile, _("`%s' already defined in repertoire"), symbol);
|
||||
lr_error (ldfile, _("`%.*s' already defined in repertoire"),
|
||||
(int) symbol_len, symbol);
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (find_entry (&collate->sym_table, symbol, symbol_len, &ignore) == 0)
|
||||
{
|
||||
lr_error (ldfile, _("`%s' already defined as collating symbol"), symbol);
|
||||
lr_error (ldfile, _("`%.*s' already defined as collating symbol"),
|
||||
(int) symbol_len, symbol);
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (find_entry (&collate->elem_table, symbol, symbol_len, &ignore) == 0)
|
||||
{
|
||||
lr_error (ldfile, _("`%s' already defined as collating element"),
|
||||
symbol);
|
||||
lr_error (ldfile, _("`%.*s' already defined as collating element"),
|
||||
(int) symbol_len, symbol);
|
||||
return 1;
|
||||
}
|
||||
|
||||
@ -2881,14 +2884,18 @@ error while adding collating symbol"));
|
||||
symname = arg->val.str.startmb;
|
||||
symname_len = arg->val.str.lenmb;
|
||||
|
||||
if (!ignore_content)
|
||||
{
|
||||
if (newname == NULL)
|
||||
{
|
||||
lr_error (ldfile, _("\
|
||||
%s: unknown character in equivalent definition name"),
|
||||
"LC_COLLATE");
|
||||
goto sym_equiv_free;
|
||||
|
||||
sym_equiv_free:
|
||||
if (newname != NULL)
|
||||
free ((char *) newname);
|
||||
if (symname != NULL)
|
||||
free ((char *) symname);
|
||||
break;
|
||||
}
|
||||
if (symname == NULL)
|
||||
{
|
||||
@ -2920,18 +2927,9 @@ error while adding equivalent collating symbol"));
|
||||
goto sym_equiv_free;
|
||||
}
|
||||
|
||||
free ((char *) symname);
|
||||
}
|
||||
else
|
||||
{
|
||||
sym_equiv_free:
|
||||
if (newname != NULL)
|
||||
free ((char *) newname);
|
||||
if (symname != NULL)
|
||||
free ((char *) symname);
|
||||
}
|
||||
lr_ignore_rest (ldfile, 1);
|
||||
}
|
||||
break;
|
||||
|
||||
case tok_order_start:
|
||||
|
Loading…
Reference in New Issue
Block a user