diff options
| author | Paul Eggert | 2012-08-17 10:08:30 -0700 |
|---|---|---|
| committer | Paul Eggert | 2012-08-17 10:08:30 -0700 |
| commit | 34dabdb7701594b83a5b35b034bba55855d256a5 (patch) | |
| tree | 860e8c22685321d157f71cd4a57c9c1162e69d54 /src/category.c | |
| parent | c24eb18ab40c3b022ab3b7d9c2aa26a37923340f (diff) | |
| download | emacs-34dabdb7701594b83a5b35b034bba55855d256a5.tar.gz emacs-34dabdb7701594b83a5b35b034bba55855d256a5.zip | |
* lisp.h (set_char_table_extras): Rename from char_table_set_extras.
(set_char_table_contents): Rename from char_table_set_contents.
(set_sub_char_table_contents): Rename from sub_char_table_sub_contents.
All uses changed. See the end of
<http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00549.html>.
Diffstat (limited to 'src/category.c')
| -rw-r--r-- | src/category.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/category.c b/src/category.c index 8a7d4d40762..ee48ce442e3 100644 --- a/src/category.c +++ b/src/category.c | |||
| @@ -70,7 +70,7 @@ hash_get_category_set (Lisp_Object table, Lisp_Object category_set) | |||
| 70 | EMACS_UINT hash; | 70 | EMACS_UINT hash; |
| 71 | 71 | ||
| 72 | if (NILP (XCHAR_TABLE (table)->extras[1])) | 72 | if (NILP (XCHAR_TABLE (table)->extras[1])) |
| 73 | char_table_set_extras | 73 | set_char_table_extras |
| 74 | (table, 1, | 74 | (table, 1, |
| 75 | make_hash_table (Qequal, make_number (DEFAULT_HASH_SIZE), | 75 | make_hash_table (Qequal, make_number (DEFAULT_HASH_SIZE), |
| 76 | make_float (DEFAULT_REHASH_SIZE), | 76 | make_float (DEFAULT_REHASH_SIZE), |
| @@ -240,7 +240,7 @@ copy_category_table (Lisp_Object table) | |||
| 240 | if (! NILP (XCHAR_TABLE (table)->defalt)) | 240 | if (! NILP (XCHAR_TABLE (table)->defalt)) |
| 241 | set_char_table_defalt (table, | 241 | set_char_table_defalt (table, |
| 242 | Fcopy_sequence (XCHAR_TABLE (table)->defalt)); | 242 | Fcopy_sequence (XCHAR_TABLE (table)->defalt)); |
| 243 | char_table_set_extras | 243 | set_char_table_extras |
| 244 | (table, 0, Fcopy_sequence (XCHAR_TABLE (table)->extras[0])); | 244 | (table, 0, Fcopy_sequence (XCHAR_TABLE (table)->extras[0])); |
| 245 | map_char_table (copy_category_entry, Qnil, table, table); | 245 | map_char_table (copy_category_entry, Qnil, table, table); |
| 246 | 246 | ||
| @@ -272,7 +272,7 @@ DEFUN ("make-category-table", Fmake_category_table, Smake_category_table, | |||
| 272 | val = Fmake_char_table (Qcategory_table, Qnil); | 272 | val = Fmake_char_table (Qcategory_table, Qnil); |
| 273 | set_char_table_defalt (val, MAKE_CATEGORY_SET); | 273 | set_char_table_defalt (val, MAKE_CATEGORY_SET); |
| 274 | for (i = 0; i < (1 << CHARTAB_SIZE_BITS_0); i++) | 274 | for (i = 0; i < (1 << CHARTAB_SIZE_BITS_0); i++) |
| 275 | char_table_set_contents (val, i, MAKE_CATEGORY_SET); | 275 | set_char_table_contents (val, i, MAKE_CATEGORY_SET); |
| 276 | Fset_char_table_extra_slot (val, make_number (0), | 276 | Fset_char_table_extra_slot (val, make_number (0), |
| 277 | Fmake_vector (make_number (95), Qnil)); | 277 | Fmake_vector (make_number (95), Qnil)); |
| 278 | return val; | 278 | return val; |