diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-07-04 20:44:52 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-07-04 20:44:52 +0000 |
commit | 2e34157cd9e74150e79e0ce23236252b47fb5f1a (patch) | |
tree | 418451da8380ec73d5d46dc648c07e6ad8af845f /src/category.c | |
parent | 8c239ac3ed4f636810bc08959e1318b1a6e928ba (diff) | |
download | emacs-2e34157cd9e74150e79e0ce23236252b47fb5f1a.tar.gz |
Fix bugs with inappropriate mixing of Lisp_Object with int.
Diffstat (limited to 'src/category.c')
-rw-r--r-- | src/category.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/category.c b/src/category.c index 81ef3dcd622..f63b65e1301 100644 --- a/src/category.c +++ b/src/category.c @@ -574,8 +574,8 @@ word_boundary_p (c1, c2) if (CONSP (elt) && CATEGORYP (XCONS (elt)->car) && CATEGORYP (XCONS (elt)->cdr) - && CATEGORY_MEMBER (XCONS (elt)->car, category_set1) - && CATEGORY_MEMBER (XCONS (elt)->cdr, category_set2)) + && CATEGORY_MEMBER (XFASTINT (XCONS (elt)->car), category_set1) + && CATEGORY_MEMBER (XFASTINT (XCONS (elt)->cdr), category_set2)) return !default_result; } return default_result; |