aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDave Love2002-07-16 14:56:33 +0000
committerDave Love2002-07-16 14:56:33 +0000
commit0b261f59796dcea607fb51fbb701f9274146be6d (patch)
tree076dbda92e21361f0dbbde20fc179454f339b98d /src
parentb1fe143d16e7356f6ac7c4a720fc0e9d07519073 (diff)
downloademacs-0b261f59796dcea607fb51fbb701f9274146be6d.tar.gz
emacs-0b261f59796dcea607fb51fbb701f9274146be6d.zip
(Fmodify_category_entry): Fix CATEGORY_MEMBER call.
Diffstat (limited to 'src')
-rw-r--r--src/category.c2
1 files changed, 1 insertions, 1 deletions
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. */)
364 while (start <= end) 364 while (start <= end)
365 { 365 {
366 category_set = char_table_ref_and_range (table, start, &from, &to); 366 category_set = char_table_ref_and_range (table, start, &from, &to);
367 if (CATEGORY_MEMBER (category, category_set) != NILP (reset)) 367 if (CATEGORY_MEMBER (XFASTINT (category), category_set) != NILP (reset))
368 { 368 {
369 category_set = Fcopy_sequence (category_set); 369 category_set = Fcopy_sequence (category_set);
370 SET_CATEGORY_SET (category_set, category, set_value); 370 SET_CATEGORY_SET (category_set, category, set_value);