1
0
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:
Richard M. Stallman 1996-05-06 04:28:32 +00:00
parent bd47bd35ab
commit 6c6fcbf89b

View File

@ -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;
}