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:
parent
b80785d3d3
commit
f79609dc4c
1 changed files with 6 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue