diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2013-10-14 00:12:49 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2013-10-14 00:12:49 -0700 |
commit | 1c0a74936b61e1f7e662089126a0765e25bf2c29 (patch) | |
tree | 8d57ee533b81b8aeb0bade9f327e385d91418c98 /src/category.h | |
parent | 1eda1d8d34c864df5b89464e51f0cbb8e46c5afd (diff) | |
download | emacs-1c0a74936b61e1f7e662089126a0765e25bf2c29.tar.gz |
* lisp.h (bool_vector_size): New function.
All uses of XBOOL_VECTOR (x)->size changed to bool_vector_size (x).
* data.c (bool_vector_spare_mask, bool_vector_binop_driver)
(Fbool_vector_not, Fbool_vector_count_matches_at):
Remove uses of 'eassume' that should no longer be needed,
because they are subsumed by the 'eassume' in bool_vector_size.
Diffstat (limited to 'src/category.h')
-rw-r--r-- | src/category.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/category.h b/src/category.h index 828dcd1f325..a2eaf010132 100644 --- a/src/category.h +++ b/src/category.h @@ -63,7 +63,7 @@ INLINE_HEADER_BEGIN #define XCATEGORY_SET XBOOL_VECTOR #define CATEGORY_SET_P(x) \ - (BOOL_VECTOR_P (x) && XBOOL_VECTOR (x)->size == 128) + (BOOL_VECTOR_P (x) && bool_vector_size (x) == 128) /* Return a new empty category set. */ #define MAKE_CATEGORY_SET (Fmake_bool_vector (make_number (128), Qnil)) |