summaryrefslogtreecommitdiff
path: root/src/category.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2012-08-17 10:08:30 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2012-08-17 10:08:30 -0700
commit34dabdb7701594b83a5b35b034bba55855d256a5 (patch)
tree860e8c22685321d157f71cd4a57c9c1162e69d54 /src/category.c
parentc24eb18ab40c3b022ab3b7d9c2aa26a37923340f (diff)
downloademacs-34dabdb7701594b83a5b35b034bba55855d256a5.tar.gz
* 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.c6
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)
EMACS_UINT hash;
if (NILP (XCHAR_TABLE (table)->extras[1]))
- char_table_set_extras
+ set_char_table_extras
(table, 1,
make_hash_table (Qequal, make_number (DEFAULT_HASH_SIZE),
make_float (DEFAULT_REHASH_SIZE),
@@ -240,7 +240,7 @@ copy_category_table (Lisp_Object table)
if (! NILP (XCHAR_TABLE (table)->defalt))
set_char_table_defalt (table,
Fcopy_sequence (XCHAR_TABLE (table)->defalt));
- char_table_set_extras
+ set_char_table_extras
(table, 0, Fcopy_sequence (XCHAR_TABLE (table)->extras[0]));
map_char_table (copy_category_entry, Qnil, table, table);
@@ -272,7 +272,7 @@ DEFUN ("make-category-table", Fmake_category_table, Smake_category_table,
val = Fmake_char_table (Qcategory_table, Qnil);
set_char_table_defalt (val, MAKE_CATEGORY_SET);
for (i = 0; i < (1 << CHARTAB_SIZE_BITS_0); i++)
- char_table_set_contents (val, i, MAKE_CATEGORY_SET);
+ set_char_table_contents (val, i, MAKE_CATEGORY_SET);
Fset_char_table_extra_slot (val, make_number (0),
Fmake_vector (make_number (95), Qnil));
return val;