]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fmodify_category_entry): Fix CATEGORY_MEMBER call.
authorDave Love <fx@gnu.org>
Tue, 16 Jul 2002 14:56:33 +0000 (14:56 +0000)
committerDave Love <fx@gnu.org>
Tue, 16 Jul 2002 14:56:33 +0000 (14:56 +0000)
src/category.c

index 4e89c98a027b55f16d88479eb087de20c2dd59a7..c31c1961e048819989d68d55e629c3214bae7658 100644 (file)
@@ -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);