1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-06 03:40:56 -08:00

(set_case_table): If standard is nonzero, setup

Vascii_upcase_table, Vascii_canon_table, and Vascii_eqv_table.
This commit is contained in:
Kenichi Handa 2005-04-01 01:05:29 +00:00
parent b80785d3d3
commit f79609dc4c

View file

@ -162,7 +162,12 @@ set_case_table (table, standard)
XCHAR_TABLE (canon)->extras[2] = eqv;
if (standard)
Vascii_downcase_table = table;
{
Vascii_downcase_table = table;
Vascii_upcase_table = up;
Vascii_canon_table = canon;
Vascii_eqv_table = eqv;
}
else
{
current_buffer->downcase_table = table;