From: Dave Love Date: Tue, 16 Jul 2002 14:56:33 +0000 (+0000) Subject: (Fmodify_category_entry): Fix CATEGORY_MEMBER call. X-Git-Tag: emacs-pretest-23.0.90~8295^2~1864^2~572 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0b261f59796dcea607fb51fbb701f9274146be6d;p=emacs.git (Fmodify_category_entry): Fix CATEGORY_MEMBER call. --- diff --git a/src/category.c b/src/category.c index 4e89c98a027..c31c1961e04 100644 --- a/src/category.c +++ b/src/category.c @@ -364,7 +364,7 @@ then delete CATEGORY from the category set instead of adding it. */) while (start <= end) { category_set = char_table_ref_and_range (table, start, &from, &to); - if (CATEGORY_MEMBER (category, category_set) != NILP (reset)) + if (CATEGORY_MEMBER (XFASTINT (category), category_set) != NILP (reset)) { category_set = Fcopy_sequence (category_set); SET_CATEGORY_SET (category_set, category, set_value);