diff options
Diffstat (limited to 'src/category.c')
| -rw-r--r-- | src/category.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/category.c b/src/category.c index d6ccde5369b..c316e9a0234 100644 --- a/src/category.c +++ b/src/category.c | |||
| @@ -271,8 +271,7 @@ DEFUN ("make-category-table", Fmake_category_table, Smake_category_table, | |||
| 271 | set_char_table_defalt (val, MAKE_CATEGORY_SET); | 271 | set_char_table_defalt (val, MAKE_CATEGORY_SET); |
| 272 | for (i = 0; i < (1 << CHARTAB_SIZE_BITS_0); i++) | 272 | for (i = 0; i < (1 << CHARTAB_SIZE_BITS_0); i++) |
| 273 | set_char_table_contents (val, i, MAKE_CATEGORY_SET); | 273 | set_char_table_contents (val, i, MAKE_CATEGORY_SET); |
| 274 | Fset_char_table_extra_slot (val, make_fixnum (0), | 274 | Fset_char_table_extra_slot (val, make_fixnum (0), make_nil_vector (95)); |
| 275 | Fmake_vector (make_fixnum (95), Qnil)); | ||
| 276 | return val; | 275 | return val; |
| 277 | } | 276 | } |
| 278 | 277 | ||
| @@ -446,7 +445,7 @@ init_category_once (void) | |||
| 446 | /* Set a category set which contains nothing to the default. */ | 445 | /* Set a category set which contains nothing to the default. */ |
| 447 | set_char_table_defalt (Vstandard_category_table, MAKE_CATEGORY_SET); | 446 | set_char_table_defalt (Vstandard_category_table, MAKE_CATEGORY_SET); |
| 448 | Fset_char_table_extra_slot (Vstandard_category_table, make_fixnum (0), | 447 | Fset_char_table_extra_slot (Vstandard_category_table, make_fixnum (0), |
| 449 | Fmake_vector (make_fixnum (95), Qnil)); | 448 | make_nil_vector (95)); |
| 450 | } | 449 | } |
| 451 | 450 | ||
| 452 | void | 451 | void |