mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-09 15:50:21 +00:00
(set_case_table): Set upcase_table, case_canon_table
and case_eqv_table in the buffer.
This commit is contained in:
parent
bd47bd35ab
commit
6c6fcbf89b
@ -159,7 +159,12 @@ set_case_table (table, standard)
|
||||
if (standard)
|
||||
Vascii_downcase_table = table;
|
||||
else
|
||||
current_buffer->downcase_table = table;
|
||||
{
|
||||
current_buffer->downcase_table = table;
|
||||
current_buffer->upcase_table = up;
|
||||
current_buffer->case_canon_table = canon;
|
||||
current_buffer->case_eqv_table = eqv;
|
||||
}
|
||||
|
||||
return table;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user