*** empty log message ***

This commit is contained in:
Kenichi Handa 2005-04-22 07:11:21 +00:00
parent 1468c19bdd
commit b9c1591618
2 changed files with 13 additions and 1 deletions

View file

@ -1,3 +1,11 @@
2005-04-22 Kenichi Handa <handa@m17n.org>
* fns.c (copy_sub_char_table): Explicitly copy the default value
of the sub-chartable.
* fontset.c (fontset_set): When a sub-chartable is created,
explicitly sets the defalt value.
2005-04-22 Kim F. Storm <storm@cua.dk>
* fns.c (Fplist_get): Replace by Fsafe_plist_get.

View file

@ -353,7 +353,11 @@ fontset_set (fontset, c, newelt)
for (i = 0; code[i] > 0; i++)
{
if (!SUB_CHAR_TABLE_P (*elt))
*elt = make_sub_char_table (*elt);
{
Lisp_Object val = *elt;
*elt = make_sub_char_table (val);
XCHAR_TABLE (*elt)->defalt = val;
}
elt = &XCHAR_TABLE (*elt)->contents[code[i]];
}
if (SUB_CHAR_TABLE_P (*elt))