*** empty log message ***
This commit is contained in:
parent
1468c19bdd
commit
b9c1591618
2 changed files with 13 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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))
|
||||
|
|
Loading…
Add table
Reference in a new issue