From ad6b1cab9287e458c5a1c6a9558465a2fc3b735f Mon Sep 17 00:00:00 2001 From: tomo Date: Mon, 3 Sep 2001 17:54:01 +0000 Subject: [PATCH] (char_table_description): Fix typo. (Fmap_char_attribute): Use `Lisp_Char_Table' instead of `Lisp_Char_ID_Table'. --- src/chartab.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/chartab.c b/src/chartab.c index f6850bf..a94227d 100644 --- a/src/chartab.c +++ b/src/chartab.c @@ -1671,7 +1671,7 @@ char_table_hash (Lisp_Object obj, int depth) static const struct lrecord_description char_table_description[] = { #ifdef UTF2000 - { XD_LISP_OBJECT, offsetof(Lisp_Char_ID_Table, table) }, + { XD_LISP_OBJECT, offsetof(Lisp_Char_Table, table) }, #else { XD_LISP_OBJECT_ARRAY, offsetof (Lisp_Char_Table, ascii), NUM_ASCII_CHARS }, #ifdef MULE @@ -3322,7 +3322,7 @@ the entire table. (function, attribute, range)) { Lisp_Object ccs; - Lisp_Char_ID_Table *ct; + Lisp_Char_Table *ct; struct slow_map_char_table_arg slarg; struct gcpro gcpro1, gcpro2; struct chartab_range rainj; -- 1.7.10.4