comparison src/casetab.c @ 15171:36c329b45867

(set_case_table): Set upcase_table, case_canon_table and case_eqv_table in the buffer.
author Richard M. Stallman <rms@gnu.org>
date Mon, 06 May 1996 04:28:32 +0000
parents ee40177f6c68
children d4c102d5ac70
comparison
equal deleted inserted replaced
15170:0d698228e98c 15171:36c329b45867
157 } 157 }
158 158
159 if (standard) 159 if (standard)
160 Vascii_downcase_table = table; 160 Vascii_downcase_table = table;
161 else 161 else
162 current_buffer->downcase_table = table; 162 {
163 current_buffer->downcase_table = table;
164 current_buffer->upcase_table = up;
165 current_buffer->case_canon_table = canon;
166 current_buffer->case_eqv_table = eqv;
167 }
163 168
164 return table; 169 return table;
165 } 170 }
166 171
167 /* Given a translate table TRT, store the inverse mapping into INVERSE. 172 /* Given a translate table TRT, store the inverse mapping into INVERSE.