-/* Copyright (C) 1996 Free Software Foundation, Inc.
+/* Copyright (C) 1996, 1998 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper, <drepper@gnu.ai.mit.edu>.
for (cnt = from_nr; cnt <= to_nr; ++cnt)
{
- sprintf (&buf[prefix_len], "%0d", cnt);
+ sprintf (&buf[prefix_len], "%0*d", len1 - prefix_len, cnt);
if (insert_entry (&cs->char_table, buf, len1,
- (void *) (unsigned long int) cnt) < 0)
+ (void *) (unsigned long int) (value + (cnt - from_nr)))
+ < 0)
lr_error (lr, _("duplicate character name `%s'"), buf);
}
}