diff options
| author | Paul Eggert | 2011-04-10 23:28:35 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-04-10 23:28:35 -0700 |
| commit | d85b608f9c151c6f6d07e12392962e02c6ce528b (patch) | |
| tree | 77944a07ab2f73bce42337107e1a3a3ced63be8e /src/category.h | |
| parent | 31cd66f38b534c4ca882a1eb8ec51012c431687d (diff) | |
| download | emacs-d85b608f9c151c6f6d07e12392962e02c6ce528b.tar.gz emacs-d85b608f9c151c6f6d07e12392962e02c6ce528b.zip | |
* category.c (SET_CATEGORY_SET, set_category_set): Move here.
* category.h: ... from here.
* category.c (check_category_table, set_category_set): Now static.
Diffstat (limited to 'src/category.h')
| -rw-r--r-- | src/category.h | 7 |
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 | ||
| 116 | extern int word_boundary_p (int, int); | 111 | extern int word_boundary_p (int, int); |
| 117 | extern void set_category_set (Lisp_Object, Lisp_Object, Lisp_Object); | ||
| 118 | |||