X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/67ab0163d67fbfeb41c37c8a259f27eeef965520..36c46f8e09d5cb0cb8d2b19b9d3ad4826b5e163c:/src/category.h diff --git a/src/category.h b/src/category.h index b279f3d9c5..737198cc96 100644 --- a/src/category.h +++ b/src/category.h @@ -62,16 +62,11 @@ along with GNU Emacs. If not, see . */ #define XCATEGORY_SET XBOOL_VECTOR #define CATEGORY_SET_P(x) \ - (BOOL_VECTOR_P ((x)) && (EMACS_INT) (XBOOL_VECTOR ((x))->size) == 128) + (BOOL_VECTOR_P (x) && XBOOL_VECTOR (x)->size == 128) /* Return a new empty category set. */ #define MAKE_CATEGORY_SET (Fmake_bool_vector (make_number (128), Qnil)) -/* Make CATEGORY_SET includes (if VAL is t) or excludes (if VAL is - nil) CATEGORY. */ -#define SET_CATEGORY_SET(category_set, category, val) \ - (set_category_set (category_set, category, val)) - #define CHECK_CATEGORY_SET(x) \ CHECK_TYPE (CATEGORY_SET_P (x), Qcategorysetp, x) @@ -114,5 +109,3 @@ extern Lisp_Object _temp_category_set; && word_boundary_p (c1, c2)) extern int word_boundary_p (int, int); -extern void set_category_set (Lisp_Object, Lisp_Object, Lisp_Object); -