]> git.eshelyaron.com Git - emacs.git/commitdiff
(make_sub_char_table): Argument changed to initial
authorKenichi Handa <handa@m17n.org>
Wed, 20 Apr 2005 07:50:08 +0000 (07:50 +0000)
committerKenichi Handa <handa@m17n.org>
Wed, 20 Apr 2005 07:50:08 +0000 (07:50 +0000)
value of the slots.

src/alloc.c

index f3af3940e157d982d5b1f1483f4f857fc56c9c38..fb352bd56d8381ffe800be0a6778cf88c5e952bb 100644 (file)
@@ -3014,18 +3014,18 @@ The property's value should be an integer between 0 and 10.  */)
 }
 
 
-/* Return a newly created sub char table with default value DEFALT.
+/* Return a newly created sub char table with slots initialized by INIT.
    Since a sub char table does not appear as a top level Emacs Lisp
    object, we don't need a Lisp interface to make it.  */
 
 Lisp_Object
-make_sub_char_table (defalt)
-     Lisp_Object defalt;
+make_sub_char_table (init)
+     Lisp_Object init;
 {
   Lisp_Object vector
-    = Fmake_vector (make_number (SUB_CHAR_TABLE_STANDARD_SLOTS), Qnil);
+    = Fmake_vector (make_number (SUB_CHAR_TABLE_STANDARD_SLOTS), init);
   XCHAR_TABLE (vector)->top = Qnil;
-  XCHAR_TABLE (vector)->defalt = defalt;
+  XCHAR_TABLE (vector)->defalt = Qnil;
   XSETCHAR_TABLE (vector, XCHAR_TABLE (vector));
   return vector;
 }