aboutsummaryrefslogtreecommitdiffstats
path: root/src/category.h
diff options
context:
space:
mode:
authorPaul Eggert2011-04-15 00:48:51 -0700
committerPaul Eggert2011-04-15 00:48:51 -0700
commit4170f62f39edf1ff1e99aec9bfbfe7bbf10e7fc9 (patch)
treee993b231bb5555c9c961f5d0b20d90ac76f77bbd /src/category.h
parent1963a2e0bb07cc8dee6d27f972f93d9cfd7c6b2d (diff)
parent49093f601b69d91126aefd328ee8f6bfeb797407 (diff)
downloademacs-4170f62f39edf1ff1e99aec9bfbfe7bbf10e7fc9.tar.gz
emacs-4170f62f39edf1ff1e99aec9bfbfe7bbf10e7fc9.zip
Merge from mainline.
Diffstat (limited to 'src/category.h')
-rw-r--r--src/category.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/category.h b/src/category.h
index b279f3d9c59..eacd89ce2cb 100644
--- a/src/category.h
+++ b/src/category.h
@@ -67,11 +67,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
67/* Return a new empty category set. */ 67/* Return a new empty category set. */
68#define MAKE_CATEGORY_SET (Fmake_bool_vector (make_number (128), Qnil)) 68#define MAKE_CATEGORY_SET (Fmake_bool_vector (make_number (128), Qnil))
69 69
70/* Make CATEGORY_SET includes (if VAL is t) or excludes (if VAL is
71 nil) CATEGORY. */
72#define SET_CATEGORY_SET(category_set, category, val) \
73 (set_category_set (category_set, category, val))
74
75#define CHECK_CATEGORY_SET(x) \ 70#define CHECK_CATEGORY_SET(x) \
76 CHECK_TYPE (CATEGORY_SET_P (x), Qcategorysetp, x) 71 CHECK_TYPE (CATEGORY_SET_P (x), Qcategorysetp, x)
77 72
@@ -114,5 +109,3 @@ extern Lisp_Object _temp_category_set;
114 && word_boundary_p (c1, c2)) 109 && word_boundary_p (c1, c2))
115 110
116extern int word_boundary_p (int, int); 111extern int word_boundary_p (int, int);
117extern void set_category_set (Lisp_Object, Lisp_Object, Lisp_Object);
118