]> git.eshelyaron.com Git - emacs.git/commitdiff
* chartab.c (make_sub_char_table): Fix size typo.
authorPaul Eggert <eggert@cs.ucla.edu>
Fri, 8 Nov 2013 07:28:21 +0000 (23:28 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Fri, 8 Nov 2013 07:28:21 +0000 (23:28 -0800)
This bug was introduced in my 2013-06-21 change, and caused
struct Lisp_Sub_Char_Table objects to be given too many slots,
which broke 'make -C admin/unidata'.

Fixes: debbugs:15825
src/ChangeLog
src/chartab.c

index 2914c23ef0e5b254cb99559d943f2bcff57368ee..9bf71b9ce2100e3a3d5cfb305771b3f2abf4dcea 100644 (file)
@@ -1,3 +1,10 @@
+2013-11-08  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * chartab.c (make_sub_char_table): Fix size typo (Bug#15825).
+       This bug was introduced in my 2013-06-21 change, and caused
+       struct Lisp_Sub_Char_Table objects to be given too many slots,
+       which broke 'make -C admin/unidata'.
+
 2013-11-07  Jan Djärv  <jan.h.d@swipnet.se>
 
        Import changes from mac-port 4.5.
index b7b9590a5382f34bba86b1e3f8b503f3a1dce292..16dd85c12c00431e16be176dbdd6c5c61c3cf706 100644 (file)
@@ -141,7 +141,8 @@ static Lisp_Object
 make_sub_char_table (int depth, int min_char, Lisp_Object defalt)
 {
   Lisp_Object table;
-  int size = CHAR_TABLE_STANDARD_SLOTS + chartab_size[depth];
+  int size = (PSEUDOVECSIZE (struct Lisp_Sub_Char_Table, contents)
+             + chartab_size[depth]);
 
   table = Fmake_vector (make_number (size), defalt);
   XSETPVECTYPE (XVECTOR (table), PVEC_SUB_CHAR_TABLE);