diff options
| author | Richard M. Stallman | 1996-05-06 04:28:32 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-05-06 04:28:32 +0000 |
| commit | 6c6fcbf89bb6a46ed3e1c34bc2a301bb624ad4a5 (patch) | |
| tree | c10ee44e2e9f5190b38fd2beae8e482aae4da320 /src | |
| parent | bd47bd35ab7b4c1b5f28c10a10a943b1d4b5bbfb (diff) | |
| download | emacs-6c6fcbf89bb6a46ed3e1c34bc2a301bb624ad4a5.tar.gz emacs-6c6fcbf89bb6a46ed3e1c34bc2a301bb624ad4a5.zip | |
(set_case_table): Set upcase_table, case_canon_table
and case_eqv_table in the buffer.
Diffstat (limited to 'src')
| -rw-r--r-- | src/casetab.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/casetab.c b/src/casetab.c index 112910cc09c..f0612fe1b54 100644 --- a/src/casetab.c +++ b/src/casetab.c | |||
| @@ -159,7 +159,12 @@ set_case_table (table, standard) | |||
| 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 | } |